In TestInstanceMigrate, check (and wait) for the instance to be running after starting it before proceeding further.
Signed-off-by: Bhimanavajjula Aditya <[email protected]> --- qa/qa_instance.py | 1 + 1 file changed, 1 insertion(+) diff --git a/qa/qa_instance.py b/qa/qa_instance.py index 490fec0..8b0f422 100644 --- a/qa/qa_instance.py +++ b/qa/qa_instance.py @@ -538,6 +538,7 @@ def TestInstanceMigrate(instance, toggle_always_failover=True): AssertCommand(["gnt-instance", "migrate", "--force", "--allow-failover", instance.name]) AssertCommand(["gnt-instance", "start", instance.name]) + qa_utils.RunInstanceCheck(instance, True) AssertCommand(cmd) # @InstanceCheck enforces the check that the instance is running qa_utils.RunInstanceCheck(instance, True) -- 2.6.0.rc2.230.g3dd15c0
