Skip to content

Commit

Permalink
[SQL Lab] Increase timeout threshold for offline check (#7411)
Browse files Browse the repository at this point in the history
(cherry picked from commit 11408d0)
  • Loading branch information
Grace Guo authored and michellethomas committed Jun 1, 2019
1 parent b126d3d commit 703d13f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superset/assets/src/SqlLab/components/QueryAutoRefresh.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 703d13f

Please sign in to comment.