Skip to content

Commit

Permalink
Merge pull request puckel#161 from rootcss/master
Browse files Browse the repository at this point in the history
fix CELERY_RESULT_BACKEND env var name in entrypoint.sh
  • Loading branch information
puckel authored Mar 1, 2018
2 parents 18bb158 + bcd9c6c commit 7eafd87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ wait_for_redis() {

AIRFLOW__CORE__SQL_ALCHEMY_CONN="postgresql+psycopg2://$POSTGRES_USER:$POSTGRES_PASSWORD@$POSTGRES_HOST:$POSTGRES_PORT/$POSTGRES_DB"
AIRFLOW__CELERY__BROKER_URL="redis://$REDIS_PREFIX$REDIS_HOST:$REDIS_PORT/1"
AIRFLOW__CELERY__RESULT_BACKEND="db+postgresql://$POSTGRES_USER:$POSTGRES_PASSWORD@$POSTGRES_HOST:$POSTGRES_PORT/$POSTGRES_DB"
AIRFLOW__CELERY__CELERY_RESULT_BACKEND="db+postgresql://$POSTGRES_USER:$POSTGRES_PASSWORD@$POSTGRES_HOST:$POSTGRES_PORT/$POSTGRES_DB"

case "$1" in
webserver)
Expand Down

0 comments on commit 7eafd87

Please sign in to comment.