fix: implement force refresh in chart data request (#9762)

* fix: implement force refresh in chart data request

* unrelated lint
This commit is contained in:
Ville Brofeldt
2020-05-07 19:33:41 +03:00
committed by GitHub
parent 80f8349018
commit 5b430ead42
6 changed files with 98 additions and 87 deletions

View File

@@ -27,7 +27,6 @@ import os
from werkzeug.contrib.cache import FileSystemCache
logger = logging.getLogger()
@@ -65,7 +64,7 @@ SQLALCHEMY_DATABASE_URI = "%s://%s:%s@%s:%s/%s" % (
REDIS_HOST = get_env_variable("REDIS_HOST")
REDIS_PORT = get_env_variable("REDIS_PORT")
RESULTS_BACKEND = FileSystemCache('/app/superset_home/sqllab')
RESULTS_BACKEND = FileSystemCache("/app/superset_home/sqllab")
class CeleryConfig(object):