From 1019fcc972fcecc176b6c424927594a25441a153 Mon Sep 17 00:00:00 2001 From: Eric Bowden Date: Fri, 1 May 2026 10:28:39 -0500 Subject: [PATCH] Set isAbort = true in ClusteredServiceAgent.CheckForClockTick to match Java API. --- src/Adaptive.Cluster/Service/ClusteredServiceAgent.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Adaptive.Cluster/Service/ClusteredServiceAgent.cs b/src/Adaptive.Cluster/Service/ClusteredServiceAgent.cs index 2bafa2d..18d29e2 100644 --- a/src/Adaptive.Cluster/Service/ClusteredServiceAgent.cs +++ b/src/Adaptive.Cluster/Service/ClusteredServiceAgent.cs @@ -1022,6 +1022,7 @@ private bool CheckForClockTick(long nowNs) if (isAbort || aeron.IsClosed) { + isAbort = true; throw new AgentTerminationException("unexpected Aeron close"); } }