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.
1 parent fa4562b commit d3e1203Copy full SHA for d3e1203
src/aleph/vm/orchestrator/machine.py
@@ -17,7 +17,7 @@ async def get_hardware_info():
17
hw_info = {"cpu": None, "memory": None}
18
19
for hw in data["children"][0]["children"]:
20
- if hw["id"] == "cpu":
+ if hw["id"] == "cpu" or hw["id"].startswith("cpu"):
21
hw_info["cpu"] = hw
22
elif hw["class"] == "memory" and hw["id"] == "memory":
23
hw_info["memory"] = hw
0 commit comments