We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Django' settings imports only UPPERCASED settings from settings.py file. Thus, we can setup CELERYBEAT_SCHEDULER, but cannot do this for beatx_store.
CELERYBEAT_SCHEDULER
beatx_store
This is significant when you do this:
app.config_from_object('django.conf:settings')
As a workaround I do:
from django.conf import settings ... settings.CELERYBEAT_SCHEDULER = 'beatx.schedulers.Scheduler' settings.beatx_store = settings.BROKER_URL app.config_from_object(settings)
It would be useful to have an ability to set variable like CELERYBEATX_STORE to be used with Django.
CELERYBEATX_STORE
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Django' settings imports only UPPERCASED settings from settings.py file.
Thus, we can setup
CELERYBEAT_SCHEDULER
, but cannot do this forbeatx_store
.This is significant when you do this:
As a workaround I do:
It would be useful to have an ability to set variable like
CELERYBEATX_STORE
to be used with Django.The text was updated successfully, but these errors were encountered: