Skip to content

Commit 1c92dc2

Browse files
twmarshallcloudera-hudson
authored andcommitted
IMPALA-6127: Fix timeout in TestRuntimeFilter.test_wait_time
test_wait_time has been flaky recently on ASAN due to hitting a timeout. The fix is to increase the timeout for ASAN builds. Change-Id: Iee005bee8e0a535ce59d2e23e56be6004f2eb9de Reviewed-on: http://gerrit.cloudera.org:8080/8427 Reviewed-by: Alex Behm <[email protected]> Tested-by: Impala Public Jenkins
1 parent a520b0c commit 1c92dc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/query_test/test_runtime_filters.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def test_wait_time(self, vector):
4848
now = time.time()
4949
self.run_test_case('QueryTest/runtime_filters_wait', vector)
5050
duration = time.time() - now
51-
assert duration < 60, \
51+
assert duration < WAIT_TIME_MS, \
5252
"Query took too long (%ss, possibly waiting for missing filters?)" % str(duration)
5353

5454
def test_file_filtering(self, vector):

0 commit comments

Comments
 (0)