-
-
Save ask/195e4229e9d5f1ff6a3d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#project.async | |
from celery import Celery | |
celery = Celery(autofinalize=False) | |
def configure_celery(flask_app): | |
#...set celery up | |
celery.config_from_object(app.config) | |
class ContextTask(celery.Task): | |
abstract = True | |
def __call__(self, *args, **kwargs): | |
with flask_app.app_context(): | |
return super(ContextTask, self).__call__(*args, **kwargs) | |
celery.Task = ContextTask | |
celery.finalize() | |
#project.__init__ | |
create_app(*kwargs): | |
app = Flaks(__name__) | |
db.init_app(app) | |
configure_celery(flask_app) | |
#project.tasks | |
from project.async import celery | |
@celery.task | |
def add(x, y): | |
x + y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment