Skip to content

Commit 5b7825f

Browse files
committed
Added --auth parameter to Flower command
1 parent 98e6c5f commit 5b7825f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Procfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
web: celery flower --port=$PORT --broker=$CLOUDAMQP_URL
1+
web: celery flower --port=$PORT --broker=$CLOUDAMQP_URL --auth=$FLOWER_AUTH_EMAIL
22
worker: celery -A tasks worker --loglevel=info

tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
from celery import Celery
55

6-
# read credentials from environment
6+
# read credentials from runtime environment
77
amqp_url = getenv('CLOUDAMQP_URL')
88

99
celery = Celery('tasks', broker=amqp_url)

0 commit comments

Comments
 (0)