This is an automated email from the ASF dual-hosted git repository. virajjasani pushed a commit to branch 5.3 in repository https://gitbox.apache.org/repos/asf/phoenix.git
commit 21a094754cd97137aa0784197103455e5a2b6166 Author: Andrew Purtell <[email protected]> AuthorDate: Fri Jul 17 10:15:46 2026 -0700 PHOENIX-7824 ConcurrentMutationsExtendedIT fix wrong TimeUnit on doneSignal.await (#2441) --- .../org/apache/phoenix/end2end/ConcurrentMutationsExtendedIT.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phoenix-core/src/it/java/org/apache/phoenix/end2end/ConcurrentMutationsExtendedIT.java b/phoenix-core/src/it/java/org/apache/phoenix/end2end/ConcurrentMutationsExtendedIT.java index 4e10284a32..63c0484c78 100644 --- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/ConcurrentMutationsExtendedIT.java +++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/ConcurrentMutationsExtendedIT.java @@ -377,7 +377,7 @@ public class ConcurrentMutationsExtendedIT extends ParallelStatsDisabledIT { Thread t2 = new Thread(r2); t2.start(); - doneSignal.await(ROW_LOCK_WAIT_TIME + 5000, TimeUnit.SECONDS); + assertTrue("Ran out of time", doneSignal.await(60, TimeUnit.SECONDS)); assertNull(failedMsg[0], failedMsg[0]); if (eventual) { Thread.sleep(35000); @@ -439,7 +439,7 @@ public class ConcurrentMutationsExtendedIT extends ParallelStatsDisabledIT { Thread t2 = new Thread(r2); t2.start(); - doneSignal.await(ROW_LOCK_WAIT_TIME + 5000, TimeUnit.SECONDS); + assertTrue("Ran out of time", doneSignal.await(60, TimeUnit.SECONDS)); if (eventual) { Thread.sleep(35000); }
