This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch fix/CAMEL-16789 in repository https://gitbox.apache.org/repos/asf/camel.git
commit 5b3db89b0003ad7e9819a81f3e6dab59e2eee250 Author: Claus Ibsen <[email protected]> AuthorDate: Sat Jul 25 13:22:58 2026 +0200 CAMEL-16789: Fix FaultTolerance copy constructor missing bulkheadWaitingTaskQueue Co-Authored-By: Claude Opus 4.6 <[email protected]> Signed-off-by: Claus Ibsen <[email protected]> --- .../java/org/apache/camel/model/FaultToleranceConfigurationCommon.java | 1 + 1 file changed, 1 insertion(+) diff --git a/core/camel-core-model/src/main/java/org/apache/camel/model/FaultToleranceConfigurationCommon.java b/core/camel-core-model/src/main/java/org/apache/camel/model/FaultToleranceConfigurationCommon.java index aba2576a014b..a30b45ffcbe4 100644 --- a/core/camel-core-model/src/main/java/org/apache/camel/model/FaultToleranceConfigurationCommon.java +++ b/core/camel-core-model/src/main/java/org/apache/camel/model/FaultToleranceConfigurationCommon.java @@ -92,6 +92,7 @@ public class FaultToleranceConfigurationCommon extends IdentifiedType { this.timeoutPoolSize = source.timeoutPoolSize; this.bulkheadEnabled = source.bulkheadEnabled; this.bulkheadMaxConcurrentCalls = source.bulkheadMaxConcurrentCalls; + this.bulkheadWaitingTaskQueue = source.bulkheadWaitingTaskQueue; this.threadOffloadExecutorService = source.threadOffloadExecutorService; }
