lifecycle: fix typo causing single process in docker-compose
This commit is contained in:
parent
b1591618ae
commit
bfe8bb5e61
|
@ -51,7 +51,7 @@ logconfig_dict = {
|
||||||
if Path("/var/run/secrets/kubernetes.io").exists():
|
if Path("/var/run/secrets/kubernetes.io").exists():
|
||||||
workers = 2
|
workers = 2
|
||||||
else:
|
else:
|
||||||
worker = cpu_count() * 2 + 1
|
workers = cpu_count() * 2 + 1
|
||||||
threads = 4
|
threads = 4
|
||||||
|
|
||||||
warnings.simplefilter("once")
|
warnings.simplefilter("once")
|
||||||
|
|
Reference in New Issue