From commits-return-2762-archive-asf-public=cust-asf.ponee.io@superset.incubator.apache.org Sat Jun 1 01:28:16 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 1F9E118075F for ; Sat, 1 Jun 2019 03:28:16 +0200 (CEST) Received: (qmail 67977 invoked by uid 500); 1 Jun 2019 01:28:15 -0000 Mailing-List: contact commits-help@superset.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@superset.incubator.apache.org Delivered-To: mailing list commits@superset.incubator.apache.org Received: (qmail 67944 invoked by uid 99); 1 Jun 2019 01:28:15 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 01 Jun 2019 01:28:15 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 48A478A577; Sat, 1 Jun 2019 01:28:15 +0000 (UTC) Date: Sat, 01 Jun 2019 01:28:16 +0000 To: "commits@superset.apache.org" Subject: [incubator-superset] 02/13: [SQL Lab] Increase timeout threshold for offline check (#7411) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit From: michellet@apache.org In-Reply-To: <155935249403.2146.12212886507610984301@gitbox.apache.org> References: <155935249403.2146.12212886507610984301@gitbox.apache.org> X-Git-Host: gitbox.apache.org X-Git-Repo: incubator-superset X-Git-Refname: refs/heads/release--0.33 X-Git-Reftype: branch X-Git-Rev: 703d13fa0bd610f9e2cb10eece414e5a5a2f9fa0 X-Git-NotificationType: diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated Message-Id: <20190601012815.48A478A577@gitbox.apache.org> 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 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() {