fix divide remainder error for memory resize etc

This commit is contained in:
catborise
2020-07-20 12:10:30 +03:00
parent 74028f35b8
commit 84a545dc61
2 changed files with 5 additions and 5 deletions

View File

@@ -841,7 +841,7 @@ class wvmConnect(object):
def get_info(doc):
mem = util.get_xpath(doc, "/domain/currentMemory")
mem = int(mem) / 1024
mem = int(mem) // 1024
if raw_mem_size:
mem = int(mem) * (1024 * 1024)
cur_vcpu = util.get_xpath(doc, "/domain/vcpu/@current")
@@ -875,7 +875,7 @@ class wvmConnect(object):
def get_info(ctx):
mem = util.get_xpath(ctx, "/domain/currentMemory")
mem = int(mem) / 1024
mem = int(mem) // 1024
cur_vcpu = util.get_xpath(ctx, "/domain/vcpu/@current")
if cur_vcpu:
vcpu = cur_vcpu