This is an automated email from the ASF dual-hosted git repository.
graceguo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git
The following commit(s) were added to refs/heads/master by this push:
new 11408d0 [SQL Lab] Increase timeout threshold for offline check (#7411)
11408d0 is described below
commit 11408d01894c6408f95597b1ef032d03df6a7397
Author: Grace Guo <[email protected]>
AuthorDate: Tue Apr 30 00:56:44 2019 -0700
[SQL Lab] Increase timeout threshold for offline check (#7411)
---
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() {