This is an automated email from the ASF dual-hosted git repository.
michaelsmith pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/impala.git
The following commit(s) were added to refs/heads/master by this push:
new 912114b6c IMPALA-14022: Use longer timeouts for rename test
912114b6c is described below
commit 912114b6cd6ffc5bc4b05c3481d8f5a8b69bddac
Author: Michael Smith <[email protected]>
AuthorDate: Mon May 5 13:07:03 2025 -0700
IMPALA-14022: Use longer timeouts for rename test
Extends timeouts for test_alter_table_rename_independent to allow more
time for catalog updates.
Change-Id: Ie3dcd7b93a37fc6d078fd562ae1c356596a758a6
Reviewed-on: http://gerrit.cloudera.org:8080/22856
Reviewed-by: Riza Suminto <[email protected]>
Tested-by: Michael Smith <[email protected]>
---
tests/metadata/test_ddl.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/tests/metadata/test_ddl.py b/tests/metadata/test_ddl.py
index 68cf32513..e54f0fc43 100644
--- a/tests/metadata/test_ddl.py
+++ b/tests/metadata/test_ddl.py
@@ -515,9 +515,9 @@ class TestDdlStatements(TestDdlBase):
start = time.time()
handle1 = client1.execute_async(alter(1, 3))
handle2 = client2.execute_async(alter(2, 4))
- assert client1.wait_for_finished_timeout(handle1, timeout=10)
- assert client2.wait_for_finished_timeout(handle2, timeout=10)
- assert time.time() - start < 10
+ assert client1.wait_for_finished_timeout(handle1, timeout=15)
+ assert client2.wait_for_finished_timeout(handle2, timeout=15)
+ assert time.time() - start < 15
profile1 = client1.get_runtime_profile(handle1)
assert get_read_lock_duration_ms(profile1) < 5000