diff options
author | Hyman Huang(黄勇) | 2021-06-03 16:20:37 +0200 |
---|---|---|
committer | Dr. David Alan Gilbert | 2021-07-05 11:51:26 +0200 |
commit | fa264f426642245eb623e9f86cf57022d854dc69 (patch) | |
tree | 3dd682ff715c1592b4347a2976e6802730c797a4 /tests/migration/guestperf/engine.py | |
parent | tests/migration: parse the thread-id key of CpuInfoFast (diff) | |
download | qemu-fa264f426642245eb623e9f86cf57022d854dc69.tar.gz qemu-fa264f426642245eb623e9f86cf57022d854dc69.tar.xz qemu-fa264f426642245eb623e9f86cf57022d854dc69.zip |
tests/migration: fix "downtime_limit" type when "migrate-set-parameters"
migrate-set-parameters parse "downtime_limit" as integer type when
execute "migrate-set-parameters" before migration, and, the unit
dowtime_limit is milliseconds, fix this two so that test can go
smoothly.
Signed-off-by: Hyman Huang(黄勇) <huangy81@chinatelecom.cn>
Message-Id: <31d82df24cc0c468dbe4d2d86730158ebf248071.1622729934.git.huangy81@chinatelecom.cn>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Diffstat (limited to 'tests/migration/guestperf/engine.py')
-rw-r--r-- | tests/migration/guestperf/engine.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/migration/guestperf/engine.py b/tests/migration/guestperf/engine.py index 9e16fa92d2..7c991c4407 100644 --- a/tests/migration/guestperf/engine.py +++ b/tests/migration/guestperf/engine.py @@ -153,7 +153,7 @@ class Engine(object): max_bandwidth=scenario._bandwidth * 1024 * 1024) resp = src.command("migrate-set-parameters", - downtime_limit=scenario._downtime / 1024.0) + downtime_limit=scenario._downtime) if scenario._compression_mt: resp = src.command("migrate-set-capabilities", |