From deb69a9a4f932b9fd2ed6b9d5f797710d5467bbf Mon Sep 17 00:00:00 2001 From: Andrew Purtell Date: Fri, 1 May 2026 16:22:31 -0700 Subject: [PATCH] PHOENIX-7825 ConcurrentMutationsIT make MyClock.shouldAdvance volatile --- .../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 f18bc11fe1f..d41a1a89dda 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;