2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-25 02:52:07 +00:00

Increase ipmi concurrency

128 can be a bit limiting, try 512 for improved responsiveness
This commit is contained in:
Jarrod Johnson 2022-05-05 09:28:09 -04:00
parent 86891eb2e5
commit 2925c291cf

View File

@ -110,7 +110,7 @@ def exithandler():
atexit.register(exithandler)
_ipmiworkers = greenpool.GreenPool(128)
_ipmiworkers = greenpool.GreenPool(512)
_ipmithread = None
_ipmiwaiters = []