Fix instance failover (missing argument)
authorMichael Hanselmann <hansmi@google.com>
Thu, 21 Jul 2011 13:22:23 +0000 (15:22 +0200)
committerMichael Hanselmann <hansmi@google.com>
Thu, 21 Jul 2011 13:25:50 +0000 (15:25 +0200)
More fallout from commit 323f9095b49d.

Signed-off-by: Michael Hanselmann <hansmi@google.com>
Reviewed-by: Iustin Pop <iustin@google.com>

lib/cmdlib.py

index bb6092b..484cb58 100644 (file)
@@ -7250,7 +7250,8 @@ class TLMigrateInstance(Tasklet):
         raise errors.OpExecError("Can't activate the instance's disks")
 
       self.feedback_fn("* starting the instance on the target node")
-      result = self.rpc.call_instance_start(target_node, instance, None, None)
+      result = self.rpc.call_instance_start(target_node, instance, None, None,
+                                            False)
       msg = result.fail_msg
       if msg:
         _ShutdownInstanceDisks(self, instance)