Skip to content

Commit

Permalink
[SQL Lab] Increase timeout threshold for offline check (apache#7411)
Browse files Browse the repository at this point in the history
  • Loading branch information
Grace Guo committed Apr 30, 2019
1 parent 9e703f3 commit 11408d0
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 11408d0

Please sign in to comment.