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 e3cbf690d21 Upgrade mp fault tolerance
e3cbf690d21 is described below

commit e3cbf690d215b44f2bd8c960fb50e5c9ed5a4a6a
Author: Claus Ibsen <claus.ib...@gmail.com>
AuthorDate: Tue Oct 1 12:37:14 2024 +0200

    Upgrade mp fault tolerance
---
 .../microprofile/faulttolerance/FaultToleranceTimerService.java         | 2 +-
 parent/pom.xml                                                          | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/components/camel-microprofile/camel-microprofile-fault-tolerance/src/main/java/org/apache/camel/component/microprofile/faulttolerance/FaultToleranceTimerService.java
 
b/components/camel-microprofile/camel-microprofile-fault-tolerance/src/main/java/org/apache/camel/component/microprofile/faulttolerance/FaultToleranceTimerService.java
index 973aa1cf66b..4dcf98bc87e 100644
--- 
a/components/camel-microprofile/camel-microprofile-fault-tolerance/src/main/java/org/apache/camel/component/microprofile/faulttolerance/FaultToleranceTimerService.java
+++ 
b/components/camel-microprofile/camel-microprofile-fault-tolerance/src/main/java/org/apache/camel/component/microprofile/faulttolerance/FaultToleranceTimerService.java
@@ -37,7 +37,7 @@ public class FaultToleranceTimerService extends 
ServiceSupport implements CamelC
     protected void doInit() throws Exception {
         threadTimerExecutorService
                 = 
getCamelContext().getExecutorServiceManager().newCachedThreadPool(this, 
"CircuitBreakerThreadTimer");
-        timer = ThreadTimer.create(threadTimerExecutorService);
+        timer = new ThreadTimer(threadTimerExecutorService);
     }
 
     @Override
diff --git a/parent/pom.xml b/parent/pom.xml
index 1d207b28081..cf02f6beb65 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -438,7 +438,7 @@
         <smack-version>4.3.5</smack-version>
         <smallrye-config-version>3.9.1</smallrye-config-version>
         <smallrye-health-version>4.1.0</smallrye-health-version>
-        
<smallrye-fault-tolerance-version>6.4.0</smallrye-fault-tolerance-version>
+        
<smallrye-fault-tolerance-version>6.4.1</smallrye-fault-tolerance-version>
         <smbj-version>0.13.0</smbj-version>
         <smooks-version>2.0.0-RC4</smooks-version>
         <snakeyaml-version>2.3</snakeyaml-version>

Reply via email to