Skip to content

Commit 714e993

Browse files
committed
Fix MAX_PROCS float to int and calc
1 parent a6afa5f commit 714e993

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

autoworker/__init__.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
from osconf import config_from_environment
1616

1717

18-
MAX_PROCS = max(mp.cpu_count() - os.getloadavg()[0], 0) + 1
18+
#MAX_PROCS = max(mp.cpu_count() - os.getloadavg()[0], 0) + 1
19+
MAX_PROCS = int(max((mp.cpu_count() * (1 - os.getloadavg()[0]), 0)) +1)
1920
"""Number of maximum procs we can run
2021
"""
2122

0 commit comments

Comments
 (0)