From acffe5fce131af60c6332b1b75132ff3c2cc0c85 Mon Sep 17 00:00:00 2001 From: dweinholz Date: Wed, 5 Jul 2023 13:45:04 +0200 Subject: [PATCH] fix(Cluster):fixed cluster status --- VirtualMachineService/VirtualMachineHandler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VirtualMachineService/VirtualMachineHandler.py b/VirtualMachineService/VirtualMachineHandler.py index b1c44d8d..46f5cfc2 100644 --- a/VirtualMachineService/VirtualMachineHandler.py +++ b/VirtualMachineService/VirtualMachineHandler.py @@ -2119,7 +2119,7 @@ def get_cluster_status(self, cluster_id): url=request_url, json=body, headers=headers, verify=self.PRODUCTION ) json_resp = response.json(strict=False) - json_resp["self.LOG"] = str(json_resp.get("self.LOG", "")) + json_resp["log"] = str(json_resp.get("log", "")) json_resp["msg"] = str(json_resp.get("msg", "")) msg = json_resp["msg"] info = json_resp.get("info", "")