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
The following commit(s) were added to refs/heads/fix/CAMEL-16789 by this push:
new a4d8f7438a27 CAMEL-16789: Fix Resilience4j copy constructor copying
ignoreExceptions into recordExceptions
a4d8f7438a27 is described below
commit a4d8f7438a2753baa75240c3ca73799632c12a5c
Author: Claus Ibsen <[email protected]>
AuthorDate: Sat Jul 25 13:23:46 2026 +0200
CAMEL-16789: Fix Resilience4j copy constructor copying ignoreExceptions
into recordExceptions
Co-Authored-By: Claude Opus 4.6 <[email protected]>
Signed-off-by: Claus Ibsen <[email protected]>
---
.../java/org/apache/camel/model/Resilience4jConfigurationCommon.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/core/camel-core-model/src/main/java/org/apache/camel/model/Resilience4jConfigurationCommon.java
b/core/camel-core-model/src/main/java/org/apache/camel/model/Resilience4jConfigurationCommon.java
index 45a47ed98885..4692976749e6 100644
---
a/core/camel-core-model/src/main/java/org/apache/camel/model/Resilience4jConfigurationCommon.java
+++
b/core/camel-core-model/src/main/java/org/apache/camel/model/Resilience4jConfigurationCommon.java
@@ -190,7 +190,7 @@ public class Resilience4jConfigurationCommon extends
IdentifiedType {
this.timeoutExecutorService = source.timeoutExecutorService;
this.timeoutDuration = source.timeoutDuration;
this.timeoutCancelRunningFuture = source.timeoutCancelRunningFuture;
- this.recordExceptions = new ArrayList<>(source.ignoreExceptions);
+ this.recordExceptions = new ArrayList<>(source.recordExceptions);
this.ignoreExceptions = new ArrayList<>(source.ignoreExceptions);
}