gnodet opened a new pull request, #24630: URL: https://github.com/apache/camel/pull/24630
## Summary Fix three flaky camel-core tests identified by [Develocity](https://develocity.apache.org): - **StopRouteAbortAfterTimeoutTest**: Use `MockEndpoint.assertIsSatisfied(context, 30, TimeUnit.SECONDS)` instead of untimed `mockEP.assertIsSatisfied()` — the SEDA consumer with 100ms delay can be slow on CI - **LoopNoBreakOnShutdownTest**: Increase Awaitility timeout from 1s to 10s — the async seda handoff can lag on slow CI - **DefaultCamelContextSuspendResumeRouteTest**: Use timed assertion after `context.resume()` — the SEDA consumer needs time to restart polling after resume All three tests use `seda:` endpoints where timing depends on thread scheduling, making them vulnerable to CI jitter. ## Test plan - [x] All three tests pass locally with `mvn test -pl core/camel-core` - [ ] CI passes _Claude Code on behalf of gnodet_ 🤖 Generated with [Claude Code](https://claude.com/claude-code) -- 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]
