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

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


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

commit aa96038fa7136b32e7b7db23e277792b13816803
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 9846da59e14..5f3ee73f5b2 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
@@ -2178,7 +2178,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