This is an automated email from the ASF dual-hosted git repository. michellet pushed a commit to branch release--0.33 in repository https://gitbox.apache.org/repos/asf/incubator-superset.git
commit 703d13fa0bd610f9e2cb10eece414e5a5a2f9fa0 Author: Grace Guo <[email protected]> AuthorDate: Tue Apr 30 00:56:44 2019 -0700 [SQL Lab] Increase timeout threshold for offline check (#7411) (cherry picked from commit 11408d01894c6408f95597b1ef032d03df6a7397) --- superset/assets/src/SqlLab/components/QueryAutoRefresh.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset/assets/src/SqlLab/components/QueryAutoRefresh.jsx b/superset/assets/src/SqlLab/components/QueryAutoRefresh.jsx index 541ce2d..6db56d7 100644 --- a/superset/assets/src/SqlLab/components/QueryAutoRefresh.jsx +++ b/superset/assets/src/SqlLab/components/QueryAutoRefresh.jsx @@ -27,7 +27,7 @@ import * as Actions from '../actions/sqlLab'; const QUERY_UPDATE_FREQ = 2000; const QUERY_UPDATE_BUFFER_MS = 5000; const MAX_QUERY_AGE_TO_POLL = 21600000; -const QUERY_TIMEOUT_LIMIT = 7000; +const QUERY_TIMEOUT_LIMIT = 10000; class QueryAutoRefresh extends React.PureComponent { componentWillMount() {
