Browse Source

Sanitize result backend in celery report output. Closes #2812

Ask Solem 9 years ago
parent
commit
c8bd72fe21
1 changed files with 1 additions and 1 deletions
  1. 1 1
      celery/app/utils.py

+ 1 - 1
celery/app/utils.py

@@ -300,7 +300,7 @@ def bugreport(app):
         py_v=_platform.python_version(),
         driver_v=driver_v,
         transport=transport,
-        results=app.conf.result_backend or 'disabled',
+        results=maybe_sanitize_url(app.conf.result_backend or 'disabled'),
         human_settings=app.conf.humanize(),
         loader=qualname(app.loader.__class__),
     )