Skip to content

Commit

Permalink
Merge pull request #4995 from cliping/fix-eval
Browse files Browse the repository at this point in the history
migration: Fix a parameter error
  • Loading branch information
chloerh authored Jul 3, 2023
2 parents 0620b8c + 15df25e commit acbf27a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion provider/migration/migration_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ def do_common_check(params):
libvirt_domjobinfo.check_domjobinfo(migration_obj.vm, params)

# check job info when migration is in paused status
expected_domjobinfo = {"src_items": {"str_items": {"Job type": "Unbounded", "Operation": "Outgoing migration"}}}
expected_domjobinfo = '{"src_items": {"str_items": {"Job type": "Unbounded", "Operation": "Outgoing migration"}}}'
params.update({"expected_domjobinfo": expected_domjobinfo})
libvirt_monitor.check_domjobinfo_output(params)

Expand Down

0 comments on commit acbf27a

Please sign in to comment.