refactor: adopt --app as celery global option (#16040)

* Update installation.rst

* Update async_queries_celery.mdx
This commit is contained in:
John Bodley 2021-08-04 11:46:03 -07:00 committed by GitHub
parent 4359650b7d
commit 7effa44d54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -1465,7 +1465,7 @@ install from pip: ::
and run via: ::
celery flower --app=superset.tasks.celery_app:app
celery --app=superset.tasks.celery_app:app flower
Building from source
---------------------

View File

@ -114,5 +114,5 @@ pip install flower
You can run flower using:
```
celery flower --app=superset.tasks.celery_app:app
celery --app=superset.tasks.celery_app:app flower
```