Commit 02ba97dc by Guba Sándor

operation: add result message to deploy operation

parent 50bdf11a
...@@ -261,6 +261,10 @@ class DeployOperation(InstanceOperation): ...@@ -261,6 +261,10 @@ class DeployOperation(InstanceOperation):
def on_commit(self, activity): def on_commit(self, activity):
activity.resultant_state = 'RUNNING' activity.resultant_state = 'RUNNING'
activity.result = create_readable(
ugettext_noop("virtual machine succesfully "
"deployed to node: %(node)s"),
node=self.instance.node)
def _operation(self, activity, timeout=15): def _operation(self, activity, timeout=15):
# Allocate VNC port and host node # Allocate VNC port and host node
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment