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

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


The following commit(s) were added to refs/heads/camel-2.22.x by this push:
     new f484ad9  CAMEL-12756: Fixed spring boot name of property in 
conditional on property must use dash syntax.
f484ad9 is described below

commit f484ad91f55c3ab0c22e5b92673e8509086260ed
Author: Claus Ibsen <[email protected]>
AuthorDate: Tue Sep 4 17:02:45 2018 +0200

    CAMEL-12756: Fixed spring boot name of property in conditional on property 
must use dash syntax.
---
 .../java/org/apache/camel/spring/boot/TypeConversionConfiguration.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/components/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/TypeConversionConfiguration.java
 
b/components/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/TypeConversionConfiguration.java
index f49cb31..24340b2 100644
--- 
a/components/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/TypeConversionConfiguration.java
+++ 
b/components/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/TypeConversionConfiguration.java
@@ -30,7 +30,7 @@ import org.springframework.core.convert.converter.Converter;
 import org.springframework.core.convert.support.DefaultConversionService;
 
 @Configuration
-@ConditionalOnProperty(value = "camel.springboot.typeConversion", 
matchIfMissing = true)
+@ConditionalOnProperty(value = "camel.springboot.type-conversion", 
matchIfMissing = true)
 public class TypeConversionConfiguration {
 
     // We explicitly declare the destroyMethod to be "" as the Spring @Bean

Reply via email to