This is an automated email from the ASF dual-hosted git repository. virajjasani pushed a commit to branch 5.2 in repository https://gitbox.apache.org/repos/asf/phoenix.git
commit 038ae08dc5e14dc92e8a4868ba1fe166491bfad1 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 a20a266871..fcaacb4ca2 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;
