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

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

commit fe99b7ff4319218b7111c207960e7ba4d3327069
Author: Andrea Cosentino <anco...@gmail.com>
AuthorDate: Tue Apr 7 16:27:33 2020 +0200

    Camel-Microprofile-fault-tolerance: Fixed CS
---
 .../component/microprofile/faulttolerance/FaultToleranceReifier.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/components/camel-microprofile-fault-tolerance/src/main/java/org/apache/camel/component/microprofile/faulttolerance/FaultToleranceReifier.java
 
b/components/camel-microprofile-fault-tolerance/src/main/java/org/apache/camel/component/microprofile/faulttolerance/FaultToleranceReifier.java
index dfd7654..ec81375 100644
--- 
a/components/camel-microprofile-fault-tolerance/src/main/java/org/apache/camel/component/microprofile/faulttolerance/FaultToleranceReifier.java
+++ 
b/components/camel-microprofile-fault-tolerance/src/main/java/org/apache/camel/component/microprofile/faulttolerance/FaultToleranceReifier.java
@@ -92,7 +92,7 @@ public class FaultToleranceReifier extends 
ProcessorReifier<CircuitBreakerDefini
             target.setTimeoutEnabled(true);
         }
 
-        target.setTimeoutDuration(parseLong(config.getTimeoutDuration(),1000));
+        target.setTimeoutDuration(parseLong(config.getTimeoutDuration(), 
1000));
         target.setTimeoutPoolSize(parseInt(config.getTimeoutPoolSize(), 10));
     }
 
@@ -133,7 +133,7 @@ public class FaultToleranceReifier extends 
ProcessorReifier<CircuitBreakerDefini
         // Extract properties from default configuration, the one configured on
         // camel context takes the precedence over those in the registry
         loadProperties(properties, Suppliers.firstNotNull(
-             () -> 
camelContext.getExtension(Model.class).getFaultToleranceConfiguration(null),
+            () -> 
camelContext.getExtension(Model.class).getFaultToleranceConfiguration(null),
             () -> 
lookup(FaultToleranceConstants.DEFAULT_FAULT_TOLERANCE_CONFIGURATION_ID, 
FaultToleranceConfigurationDefinition.class)));
 
         // Extract properties from referenced configuration, the one configured

Reply via email to