From b64cddb8265afa3d7cb21b8b0fbf154b5bdcdcad Mon Sep 17 00:00:00 2001 From: lyam Date: Wed, 12 Jun 2024 14:08:18 +0200 Subject: [PATCH] Fix: Correct string formatting in VM startup response --- src/aleph/vm/orchestrator/views/operator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aleph/vm/orchestrator/views/operator.py b/src/aleph/vm/orchestrator/views/operator.py index 298486b73..7617a3bb5 100644 --- a/src/aleph/vm/orchestrator/views/operator.py +++ b/src/aleph/vm/orchestrator/views/operator.py @@ -182,7 +182,7 @@ async def operate_reboot(request: web.Request, authenticated_sender: str) -> web await create_vm_execution(vm_hash=vm_hash, pool=pool) return web.Response(status=200, body=f"Rebooted VM with ref {vm_hash}") else: - return web.Response(status=200, body="Starting VM (was not running) with ref {vm_hash}") + return web.Response(status=200, body=f"Starting VM (was not running) with ref {vm_hash}") @cors_allow_all