davsclaus commented on PR #24899: URL: https://github.com/apache/camel/pull/24899#issuecomment-5014859020
Good catch on the `Suspendable` marker interface — you're right that without it, `ServiceHelper.suspendService()` falls through to `stopService()`, which would reset the breaker state. The processors already inherit `SuspendableService` via `ServiceSupport` → `StatefulService`, so they just needed the `Suspendable` marker. Added it to both `FaultToleranceProcessor` and `ResilienceProcessor` in the latest push. _Claude Code on behalf of davsclaus_ -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
