You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@impala.apache.org by ta...@apache.org on 2018/01/11 01:25:22 UTC

[2/2] impala git commit: IMPALA-6381: increase test_exchange_delays timeout for isilon

IMPALA-6381: increase test_exchange_delays timeout for isilon

Change-Id: Ie82030403fa238b673b0a3ccdc7731b0d78b63af
Reviewed-on: http://gerrit.cloudera.org:8080/8993
Reviewed-by: Alex Behm <al...@cloudera.com>
Tested-by: Impala Public Jenkins


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

Branch: refs/heads/master
Commit: c0c1202dbfd1ffbd36a1053aa59e92d53b23e67a
Parents: a34df68
Author: Tim Armstrong <ta...@cloudera.com>
Authored: Wed Jan 10 11:39:41 2018 -0800
Committer: Impala Public Jenkins <im...@gerrit.cloudera.org>
Committed: Thu Jan 11 00:42:02 2018 +0000

----------------------------------------------------------------------
 tests/custom_cluster/test_exchange_delays.py | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/impala/blob/c0c1202d/tests/custom_cluster/test_exchange_delays.py
----------------------------------------------------------------------
diff --git a/tests/custom_cluster/test_exchange_delays.py b/tests/custom_cluster/test_exchange_delays.py
index 01acaef..dfab1fe 100644
--- a/tests/custom_cluster/test_exchange_delays.py
+++ b/tests/custom_cluster/test_exchange_delays.py
@@ -19,9 +19,14 @@ import pytest
 from tests.common.custom_cluster_test_suite import CustomClusterTestSuite
 from tests.common.environ import specific_build_type_timeout
 from tests.common.skip import SkipIfBuildType
+from tests.util.filesystem_utils import IS_ISILON
 
 # IMPALA-6100: add additional margin for error for slow build types.
-DELAY_MS = specific_build_type_timeout(10000, slow_build_timeout=20000)
+SLOW_BUILD_TIMEOUT=20000
+DELAY_MS = specific_build_type_timeout(10000, slow_build_timeout=SLOW_BUILD_TIMEOUT)
+# IMPALA-6381: Isilon can behave as a slow build.
+if IS_ISILON:
+  DELAY_MS = SLOW_BUILD_TIMEOUT
 
 @SkipIfBuildType.not_dev_build
 class TestExchangeDelays(CustomClusterTestSuite):