gnodet opened a new pull request, #24698: URL: https://github.com/apache/camel/pull/24698
## Summary _Claude Code on behalf of gnodet_ Fix 6 flaky tests across 5 modules that exhibit timing-related failures on CI, confirmed by [Develocity analytics](https://develocity.apache.org): | Test | Flakes (3d) | Rate | Root Cause | Fix | |------|-------------|------|------------|-----| | `JmsAddAndRemoveRouteManagementIT` | 15 | 9.0% | No route ID on initial consumer — readiness check couldn't target it | Added `routeId` + `waitForJmsConsumerRoutes` | | `SchedulerNoPolledMessagesTest` | 8 | 9.6% | Inter-message arrival timing windows too tight for CI | Widened timing windows | | `SedaBlockWhenFullTest` | 7 | 8.4% | `@Timeout(20)` kills test before 30s mock assertion can complete | Increased to `@Timeout(60)` | | `JmsDurableTopicIT` | 6 | 3.6% | Bare `assertIsSatisfied` with default 10s timeout | Use `assertIsSatisfied(context, 30, SECONDS)` | | `DisruptorBlockWhenFullTest` | 4 | 4.8% | Bare `assertIsSatisfied` with default 10s timeout | Use `assertIsSatisfied(context, 30, SECONDS)` | | `DirectProducerBlockingTest` | 3 | 3.6% | Tight `> 490` lower bound for 500ms timeout + bare mock assertion | Relaxed to `> 400` + timed assertion | ## Test plan - [x] `SedaBlockWhenFullTest` — 4 tests pass - [x] `SchedulerNoPolledMessagesTest` — 1 test passes - [x] `DirectProducerBlockingTest` — 3 tests pass - [x] `DisruptorBlockWhenFullTest` — 2 tests pass - [x] `JmsAddAndRemoveRouteManagementIT` — 1 test passes - [x] `JmsDurableTopicIT` — 1 test passes - [ ] CI build passes 🤖 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]
