Skip to content
This repository has been archived by the owner on May 27, 2024. It is now read-only.

Commit

Permalink
fix(Cluster):fixed cluster status
Browse files Browse the repository at this point in the history
  • Loading branch information
dweinholz committed Jul 5, 2023
1 parent 50de894 commit acffe5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion VirtualMachineService/VirtualMachineHandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -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", "")
Expand Down

0 comments on commit acffe5f

Please sign in to comment.