commit 571fc2c150e0cf115668ad4f00c86de3f46bd866
parent 7faf1bf913caf85e037604987129b7d9ca2afde6
Author: Stefan Koch <programming@stefan-koch.name>
Date: Sat, 6 Feb 2021 17:52:27 +0100
remove dangling debug line
Diffstat:
1 file changed, 0 insertions(+), 1 deletion(-)
diff --git a/aetherscale/api/rest.py b/aetherscale/api/rest.py
@@ -56,7 +56,6 @@ def update_vm_status(vm_id):
handler: ComputingHandler = flask.g.handler
if data['status'] == 'started':
- dbg = handler.start_vm({'vm-id': vm_id})
result = list(handler.start_vm({'vm-id': vm_id}))[0]
elif data['status'] == 'stopped':
result = list(handler.stop_vm({'vm-id': vm_id}))[0]