kopia lustrzana https://github.com/glidernet/ogn-python
15 wiersze
423 B
Python
15 wiersze
423 B
Python
![]() |
from celery import Celery
|
||
|
|
||
![]() |
|
||
![]() |
def make_celery(app):
|
||
![]() |
celery = Celery(app.import_name, backend=app.config["CELERY_RESULT_BACKEND"], broker=app.config["CELERY_BROKER_URL"])
|
||
![]() |
celery.conf.update(app.config)
|
||
|
|
||
|
class ContextTask(celery.Task):
|
||
|
def __call__(self, *args, **kwargs):
|
||
|
with app.app_context():
|
||
|
return self.run(*args, **kwargs)
|
||
|
|
||
|
celery.Task = ContextTask
|
||
![]() |
return celery
|