You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using pyxform as part of an asynchronous task with Celery. Celery performs some deep magic on the standard Python logging system when forking, and chokes since 07301f9
Celery attempts to start it's workers a few times before failing
Traceback (most recent call last):
File "/home/user/opt/virtualenvs/project/lib/python2.7/site-packages/billiard/process.py", line 315, in _bootstrap
handler.createLock()
TypeError: unbound method createLock() must be called with NullHandler instance as first argument (got nothing instead)
Process ForkPoolWorker-3:
Traceback (most recent call last):
File "/home/user/opt/virtualenvs/project/lib/python2.7/site-packages/billiard/process.py", line 315, in _bootstrap
handler.createLock()
TypeError: unbound method createLock() must be called with NullHandler instance as first argument (got nothing instead)
Process ForkPoolWorker-4:
Traceback (most recent call last):
File "/home/user/opt/virtualenvs/project/lib/python2.7/site-packages/billiard/process.py", line 315, in _bootstrap
handler.createLock()
TypeError: unbound method createLock() must be called with NullHandler instance as first argument (got nothing instead)
Process ForkPoolWorker-5:
Traceback (most recent call last):
File "/home/user/opt/virtualenvs/project/lib/python2.7/site-packages/billiard/process.py", line 315, in _bootstrap
handler.createLock()
TypeError: unbound method createLock() must be called with NullHandler instance as first argument (got nothing instead)
Process Beat:
Traceback (most recent call last):
File "/home/user/opt/virtualenvs/project/lib/python2.7/site-packages/billiard/process.py", line 315, in _bootstrap
handler.createLock()
TypeError: unbound method createLock() must be called with NullHandler instance as first argument (got nothing instead)
The text was updated successfully, but these errors were encountered:
I'm using pyxform as part of an asynchronous task with Celery. Celery performs some deep magic on the standard Python logging system when forking, and chokes since 07301f9
Celery attempts to start it's workers a few times before failing
The text was updated successfully, but these errors were encountered: