1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-23 22:50:09 +03:00

B #6607: Fix size of restored disk from backup (#3210)

(cherry picked from commit 420162da675dd861d048d010496a730b5c9e004b)
This commit is contained in:
Pavel Czerný 2024-09-04 12:55:10 +02:00 committed by Ruben S. Montero
parent b6898ccc8f
commit be752c3e96
No known key found for this signature in database
GPG Key ID: A0CEA6FA880A1D87
2 changed files with 2 additions and 2 deletions

View File

@ -111,7 +111,7 @@ if !disk
exit(-1)
end
size = disk.elements['//SIZE']
size = disk.elements['SIZE']
if !size
STDERR.puts "Cannot find size for disk #{diskid[1]} in VM backup info"

View File

@ -117,7 +117,7 @@ if !disk
exit(-1)
end
size = disk.elements['//SIZE']
size = disk.elements['SIZE']
if !size
STDERR.puts "Cannot find size for disk #{diskid[1]} in VM backup info"