mirror of
https://github.com/ansible/awx.git
synced 2026-05-10 10:57:35 -02:30
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:
@@ -70,7 +70,7 @@ class WorkerPool(object):
|
|||||||
except Exception:
|
except Exception:
|
||||||
logger.exception('could not fork')
|
logger.exception('could not fork')
|
||||||
else:
|
else:
|
||||||
logger.debug('scaling up worker pid:{}'.format(worker.pid))
|
logger.debug('scaling up worker pid:{}'.format(worker.process.pid))
|
||||||
return idx, worker
|
return idx, worker
|
||||||
|
|
||||||
def stop(self, signum):
|
def stop(self, signum):
|
||||||
|
|||||||
Reference in New Issue
Block a user