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
So I end up having to create an app context in order to do any jobs. I was wondering if it were possible to automatically include the app context.
I have to do this often
@job def random(): with app.app_context(): x = 1 + 1
I would prefer to not have to type the
with app.app_context():
The text was updated successfully, but these errors were encountered:
+1
Sorry, something went wrong.
Sure, auto create app context (passing config) will be nice.
#27
Successfully merging a pull request may close this issue.
So I end up having to create an app context in order to do any jobs. I was wondering if it were possible to automatically include the app context.
I have to do this often
I would prefer to not have to type the
The text was updated successfully, but these errors were encountered: