gnodet commented on PR #24447: URL: https://github.com/apache/camel/pull/24447#issuecomment-4936409771
Good point — `assertIsSatisfied(context)` already defaults to a 10s latch timeout internally (`waitForCompleteLatch` uses `timeout == 0 ? 10000L : timeout`), so the explicit `assertIsSatisfied(context, 10, TimeUnit.SECONDS)` was redundant for the single-message tests. Simplified the change: - **Single-message tests**: just remove the `Thread.sleep(100)` — keep `assertIsSatisfied(context)` unchanged - **Many-messages tests** (100 UDP packets): remove per-send sleep + extend timeout to 20s, since without pacing the consumer needs more time to process all packets _Claude Code on behalf of @gnodet_ -- 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]
