davsclaus commented on code in PR #21067:
URL: https://github.com/apache/camel/pull/21067#discussion_r2728078049
##########
components/camel-resilience4j/src/main/java/org/apache/camel/component/resilience4j/ResilienceProcessor.java:
##########
@@ -162,6 +162,12 @@ public PooledExchangeTask create(Exchange exchange,
AsyncCallback callback) {
@Override
protected void doStart() throws Exception {
+ if (executorService == null) {
+ // A default thread pool if none is provided.
+ executorService = camelContext.getExecutorServiceManager()
Review Comment:
If we create the thread pool ourseleves then I think you also need to set
`shutdownThreadPool=true` so its stopped in doStop
--
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]