mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2024-08-30 18:23:09 +00:00
Fix cpu_freq call on obscure systems
This commit is contained in:
parent
0fbf14063c
commit
46f27a35b6
@ -86,7 +86,7 @@ class Stats:
|
||||
def get_node_stats(self) -> NodeStatsReturnDict:
|
||||
try:
|
||||
cpu_freq = psutil.cpu_freq()
|
||||
except (NotImplementedError, FileNotFoundError):
|
||||
except (NotImplementedError, AttributeError, FileNotFoundError):
|
||||
cpu_freq = None
|
||||
if cpu_freq is None:
|
||||
cpu_freq = psutil._common.scpufreq(current=-1, min=-1, max=-1)
|
||||
|
Loading…
Reference in New Issue
Block a user