root(minor): allow subapps to define CELERY_BEAT_SCHEDULE

This commit is contained in:
Langhammer, Jens
2019-10-11 12:47:29 +02:00
parent fc69b6851d
commit 0154def916
4 changed files with 11 additions and 4 deletions

View File

@ -30,7 +30,7 @@ def authenticate(request, backends, **credentials) -> Optional[User]:
signature = Signature.from_callable(backend.authenticate)
signature.bind(request, **credentials)
except TypeError:
LOGGER.debug("Backend doesn't accept our arguments", backend=backend)
LOGGER.warning("Backend doesn't accept our arguments", backend=backend)
# This backend doesn't accept these credentials as arguments. Try the next one.
continue
LOGGER.debug('Attempting authentication...', backend=backend)