This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch camel-4.8.x
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/camel-4.8.x by this push:
     new 0eb309d35d7 Copy paste typo fix (#17822) in camel-main
0eb309d35d7 is described below

commit 0eb309d35d79abb54d44e9d45f43aec7344d2296
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 0dba8561112..aa0f6f260bb 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
@@ -1906,7 +1906,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());

Reply via email to