We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 134e03b + 6839f77 commit 2b777c2Copy full SHA for 2b777c2
SoftLayer/CLI/virt/cancel.py
@@ -21,4 +21,7 @@ def cli(env, identifier):
21
if not (env.skip_confirmations or formatting.no_going_back(vs_id)):
22
raise exceptions.CLIAbort('Aborted')
23
24
- vsi.cancel_instance(vs_id)
+ virtual_server = vsi.cancel_instance(vs_id)
25
+
26
+ if virtual_server:
27
+ env.fout("The virtual server instance: {} was cancelled.".format(vs_id))
0 commit comments