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 d77ee927d8 PHOENIX-7825 ConcurrentMutationsIT make 
MyClock.shouldAdvance volatile (#2442)
d77ee927d8 is described below

commit d77ee927d81b173559d9907514e917fa2996e53b
Author: Andrew Purtell <[email protected]>
AuthorDate: Tue Jun 30 15:51:02 2026 -0700

    PHOENIX-7825 ConcurrentMutationsIT make MyClock.shouldAdvance volatile 
(#2442)
---
 .../src/it/java/org/apache/phoenix/end2end/ConcurrentMutationsIT.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/phoenix-core/src/it/java/org/apache/phoenix/end2end/ConcurrentMutationsIT.java
 
b/phoenix-core/src/it/java/org/apache/phoenix/end2end/ConcurrentMutationsIT.java
index f18bc11fe1..d41a1a89dd 100644
--- 
a/phoenix-core/src/it/java/org/apache/phoenix/end2end/ConcurrentMutationsIT.java
+++ 
b/phoenix-core/src/it/java/org/apache/phoenix/end2end/ConcurrentMutationsIT.java
@@ -44,7 +44,7 @@ public class ConcurrentMutationsIT extends 
ParallelStatsDisabledIT {
 
   private static class MyClock extends EnvironmentEdge {
     public volatile long time;
-    boolean shouldAdvance = true;
+    volatile boolean shouldAdvance = true;
 
     public MyClock(long time) {
       this.time = time;

Reply via email to