commit
e95cef66a3
1 changed files with 3 additions and 3 deletions
|
|
@ -60,12 +60,12 @@ Flask::
|
|||
|
||||
from flask import Flask
|
||||
|
||||
app = Flask(__name__)
|
||||
app.config.update(
|
||||
flask_app = Flask(__name__)
|
||||
flask_app.config.update(
|
||||
CELERY_BROKER_URL='redis://localhost:6379',
|
||||
CELERY_RESULT_BACKEND='redis://localhost:6379'
|
||||
)
|
||||
celery = make_celery(app)
|
||||
celery = make_celery(flask_app)
|
||||
|
||||
|
||||
@celery.task()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue