This is an automated email from the ASF dual-hosted git repository. stigahuang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/impala.git
commit 29069b9499f177789a50d5cdf3536538835430ae Author: Riza Suminto <[email protected]> AuthorDate: Tue Dec 22 08:29:08 2020 -0800 IMPALA-9550: Fix flakiness in TestResultSpoolingFetchSize.test_fetch TestResultSpoolingFetchSize.test_fetch has been flaky in ubuntu-16.04-dockerised environment for not reaching finished state within 10 seconds. This patch increase the timeout of the test to 30 seconds. Testing: - Looped the test locally. Change-Id: Id2e8a9db904da5f1e4acc9e18b3987b8a4ec24e5 Reviewed-on: http://gerrit.cloudera.org:8080/16895 Reviewed-by: Bikramjeet Vig <[email protected]> Tested-by: Impala Public Jenkins <[email protected]> --- tests/query_test/test_result_spooling.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/query_test/test_result_spooling.py b/tests/query_test/test_result_spooling.py index e8c1295..04aa9f0 100644 --- a/tests/query_test/test_result_spooling.py +++ b/tests/query_test/test_result_spooling.py @@ -286,7 +286,7 @@ class TestResultSpoolingFetchSize(ImpalaTestSuite): # Amount of time to wait for the query to reach a running state before through a # Timeout exception. - timeout = 10 + timeout = 30 results = [] handle = self.execute_query_async(self._query, exec_options)
