Merge pull request #4864 from ryanpetrello/dont-stop-the-beat

warn loudly if celerybeat encounters AMQP connection issues

Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
This commit is contained in:
softwarefactory-project-zuul[bot] 2019-10-01 13:56:54 +00:00 committed by GitHub
commit 7e8c00ee24
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1103,6 +1103,10 @@ LOGGING = {
'handlers': ['console', 'file', 'tower_warnings'],
'level': 'WARNING',
},
'celery': { # for celerybeat connection warnings
'handlers': ['console', 'file', 'tower_warnings'],
'level': 'WARNING',
},
'kombu': {
'handlers': ['console', 'file', 'tower_warnings'],
'level': 'WARNING',