Bumping SQLLAB_ASYNC_TIME_LIMIT_SEC default config to 6 hours

This commit is contained in:
Maxime Beauchemin 2017-06-21 14:16:53 -07:00
parent de346a3eba
commit abbf138cfb

View File

@ -263,7 +263,7 @@ SQLLAB_DEFAULT_DBID = None
# The MAX duration (in seconds) a query can run for before being killed # The MAX duration (in seconds) a query can run for before being killed
# by celery. # by celery.
SQLLAB_ASYNC_TIME_LIMIT_SEC = 10 SQLLAB_ASYNC_TIME_LIMIT_SEC = 60 * 60 * 6
# An instantiated derivative of werkzeug.contrib.cache.BaseCache # An instantiated derivative of werkzeug.contrib.cache.BaseCache
# if enabled, it can be used to store the results of long-running queries # if enabled, it can be used to store the results of long-running queries