This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch camel-4.10.x
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/camel-4.10.x by this push:
new d4f152f02a5 Copy paste typo fix (#17822) in camel-main
d4f152f02a5 is described below
commit d4f152f02a5b5ceb620257a05f794e0a97473feb
Author: Radovan Netuka <[email protected]>
AuthorDate: Tue Apr 22 10:44:30 2025 +0200
Copy paste typo fix (#17822) in camel-main
---
.../camel-main/src/main/java/org/apache/camel/main/BaseMainSupport.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/core/camel-main/src/main/java/org/apache/camel/main/BaseMainSupport.java
b/core/camel-main/src/main/java/org/apache/camel/main/BaseMainSupport.java
index d287df5cc02..e072f4bf0a5 100644
--- a/core/camel-main/src/main/java/org/apache/camel/main/BaseMainSupport.java
+++ b/core/camel-main/src/main/java/org/apache/camel/main/BaseMainSupport.java
@@ -2090,7 +2090,7 @@ public abstract class BaseMainSupport extends BaseService
{
src.setBackOffMaxAttempts(config.getBackOffMaxAttempts());
}
if (config.getBackOffMaxDelay() > 0) {
- src.setBackOffMaxDelay(config.getBackOffDelay());
+ src.setBackOffMaxDelay(config.getBackOffMaxDelay());
}
if (config.getBackOffMaxElapsedTime() > 0) {
src.setBackOffMaxElapsedTime(config.getBackOffMaxElapsedTime());