qemu: Fix login_timeout undefined variable error

Signed-off-by: NLucas Meneghel Rodrigues <lmr@redhat.com>
上级 ee262bce
...@@ -112,7 +112,7 @@ def run_migration(test, params, env): ...@@ -112,7 +112,7 @@ def run_migration(test, params, env):
mig_speed = params.get("mig_speed", "1G") mig_speed = params.get("mig_speed", "1G")
return vm.monitor.migrate_set_speed(mig_speed) return vm.monitor.migrate_set_speed(mig_speed)
login_timeout = int(params.get("login_timeout", 360))
mig_timeout = float(params.get("mig_timeout", "3600")) mig_timeout = float(params.get("mig_timeout", "3600"))
mig_protocol = params.get("migration_protocol", "tcp") mig_protocol = params.get("migration_protocol", "tcp")
mig_cancel_delay = int(params.get("mig_cancel") == "yes") * 2 mig_cancel_delay = int(params.get("mig_cancel") == "yes") * 2
...@@ -132,8 +132,8 @@ def run_migration(test, params, env): ...@@ -132,8 +132,8 @@ def run_migration(test, params, env):
vm.verify_alive() vm.verify_alive()
if living_guest_os: if living_guest_os:
timeout = int(params.get("login_timeout", 360))
session = vm.wait_for_login(timeout=timeout) session = vm.wait_for_login(timeout=login_timeout)
# Get the output of migration_test_command # Get the output of migration_test_command
test_command = params.get("migration_test_command") test_command = params.get("migration_test_command")
...@@ -146,7 +146,7 @@ def run_migration(test, params, env): ...@@ -146,7 +146,7 @@ def run_migration(test, params, env):
# Start another session with the guest and make sure the background # Start another session with the guest and make sure the background
# process is running # process is running
session2 = vm.wait_for_login(timeout=timeout) session2 = vm.wait_for_login(timeout=login_timeout)
try: try:
check_command = params.get("migration_bg_check_command", "") check_command = params.get("migration_bg_check_command", "")
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册