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
As of 2016-10-29, the rfc6266 package on PyPi (https://pypi.python.org/pypi/rfc6266) is dated 2013-11-13. There is a typo in that version that has been fixed in the version on Github. Line 28 reads:
LOGGER.addHandler(logging.NullHandler)
instead of:
LOGGER.addHandler(logging.NullHandler())
So the call to LOGGER.debug inside parse_headers raises an AttributeError.
The text was updated successfully, but these errors were encountered:
@g2p Please let me know if I can help you out with releasing this -- this broke celery on our staging server today (it is executing .createLock() on all logging handlers and this fails for NullHandler class, but not instance).
As of 2016-10-29, the rfc6266 package on PyPi (https://pypi.python.org/pypi/rfc6266) is dated 2013-11-13. There is a typo in that version that has been fixed in the version on Github. Line 28 reads:
LOGGER.addHandler(logging.NullHandler)
instead of:
LOGGER.addHandler(logging.NullHandler())
So the call to LOGGER.debug inside parse_headers raises an AttributeError.
The text was updated successfully, but these errors were encountered: