mirror of
https://github.com/retspen/webvirtcloud
synced 2025-07-31 12:41:08 +00:00
fix divide remainder error for memory resize etc
This commit is contained in:
parent
74028f35b8
commit
84a545dc61
2 changed files with 5 additions and 5 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue