michael-s-molina commented on PR #29959: URL: https://github.com/apache/superset/pull/29959#issuecomment-2293505714
@justinpark we currently have ``` # Timeout duration for SQL Lab synchronous queries SQLLAB_TIMEOUT = int(timedelta(seconds=30).total_seconds()) # The MAX duration a query can run for before being killed by celery. SQLLAB_ASYNC_TIME_LIMIT_SEC = int(timedelta(hours=6).total_seconds()) ``` Can't we reuse one of these for this? I'm thinking that we could expand the scope of `SQLLAB_TIMEOUT` (changing the comment) to be valid for both sync and async queries. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
