This is an automated email from the ASF dual-hosted git repository.

palashc pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/phoenix.git


The following commit(s) were added to refs/heads/master by this push:
     new 2358c6b5e9 PHOENIX-7824 ConcurrentMutationsExtendedIT fix wrong 
TimeUnit on doneSignal.await (#2441)
2358c6b5e9 is described below

commit 2358c6b5e908e9c52b1ffa9b7117a9f3f5c03849
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);
     }

Reply via email to