Fix attribute error in server logs

* on a secret hunt to find the hidden attribute error in the server logs
This commit is contained in:
thedoubl3j
2026-01-20 16:08:46 -05:00
parent 8acdd0cbf4
commit 806ef7c345

View File

@@ -70,7 +70,7 @@ class WorkerPool(object):
except Exception:
logger.exception('could not fork')
else:
logger.debug('scaling up worker pid:{}'.format(worker.pid))
logger.debug('scaling up worker pid:{}'.format(worker.process.pid))
return idx, worker
def stop(self, signum):