Skip to content

Commit

Permalink
Use the right variable for Celery results in Redis (#13936)
Browse files Browse the repository at this point in the history
  • Loading branch information
octaviancorlade authored Apr 6, 2021
1 parent 09f68c9 commit f3becbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/pythonpath_dev/superset_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def get_env_variable(var_name, default=None):
REDIS_HOST = get_env_variable("REDIS_HOST")
REDIS_PORT = get_env_variable("REDIS_PORT")
REDIS_CELERY_DB = get_env_variable("REDIS_CELERY_DB", 0)
REDIS_RESULTS_DB = get_env_variable("REDIS_CELERY_DB", 1)
REDIS_RESULTS_DB = get_env_variable("REDIS_RESULTS_DB", 1)

RESULTS_BACKEND = FileSystemCache("/app/superset_home/sqllab")

Expand Down

0 comments on commit f3becbe

Please sign in to comment.