diff --git a/superset/config.py b/superset/config.py index 5e46c5f4bbd..d038816682c 100644 --- a/superset/config.py +++ b/superset/config.py @@ -59,7 +59,13 @@ SUPERSET_CELERY_WORKERS = 32 # deprecated SUPERSET_WEBSERVER_ADDRESS = '0.0.0.0' SUPERSET_WEBSERVER_PORT = 8088 -SUPERSET_WEBSERVER_TIMEOUT = 60 # deprecated + +# This is an important setting, and should be lower than your +# [load balancer / proxy / envoy / kong / ...] timeout settings. +# You should also make sure to configure your WSGI server +# (gunicorn, nginx, apache, ...) timeout setting to be <= to this setting +SUPERSET_WEBSERVER_TIMEOUT = 60 + SUPERSET_DASHBOARD_POSITION_DATA_LIMIT = 65535 EMAIL_NOTIFICATIONS = False CUSTOM_SECURITY_MANAGER = None