You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@impala.apache.org by mj...@apache.org on 2017/03/22 23:41:45 UTC

incubator-impala git commit: IMPALA-5079: Bump timeout for TestKuduOperations

Repository: incubator-impala
Updated Branches:
  refs/heads/master 7592e332a -> 7e25ec8ec


IMPALA-5079: Bump timeout for TestKuduOperations

Tests seem to be timing out similarly to IMPALA-4454. Bump
the timeout to unblock tests for now.

TODO: untangle the use of all the fancy pytest fixtures, they
may be leaking state between test cases

Change-Id: I5fd8e5eb5dbd977c386e6557941a2c47de44f344
Reviewed-on: http://gerrit.cloudera.org:8080/6453
Reviewed-by: Matthew Jacobs <mj...@cloudera.com>
Tested-by: Impala Public Jenkins


Project: http://git-wip-us.apache.org/repos/asf/incubator-impala/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-impala/commit/7e25ec8e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-impala/tree/7e25ec8e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-impala/diff/7e25ec8e

Branch: refs/heads/master
Commit: 7e25ec8ec03e0594a630910b244686ad12d264f8
Parents: 7592e33
Author: Matthew Jacobs <mj...@cloudera.com>
Authored: Fri Mar 17 18:45:32 2017 -0700
Committer: Impala Public Jenkins <im...@gerrit.cloudera.org>
Committed: Wed Mar 22 23:33:36 2017 +0000

----------------------------------------------------------------------
 tests/query_test/test_kudu.py | 5 +++++
 1 file changed, 5 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/7e25ec8e/tests/query_test/test_kudu.py
----------------------------------------------------------------------
diff --git a/tests/query_test/test_kudu.py b/tests/query_test/test_kudu.py
index 0359161..35152b8 100644
--- a/tests/query_test/test_kudu.py
+++ b/tests/query_test/test_kudu.py
@@ -45,6 +45,11 @@ class TestKuduOperations(KuduTestSuite):
   This suite tests the different modification operations when using a kudu table.
   """
 
+  @classmethod
+  def get_conn_timeout(cls):
+    # For IMPALA-5079
+    return 60 * 5 # 5 minutes
+
   def test_kudu_scan_node(self, vector, unique_database):
     self.run_test_case('QueryTest/kudu-scan-node', vector, use_db=unique_database)