squakez commented on code in PR #21067:
URL: https://github.com/apache/camel/pull/21067#discussion_r2731166251
##########
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:
Moved the executor service management into the reifier instead and added the
shutdown flag.
--
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]