This is an automated email from the ASF dual-hosted git repository.
zhfeng pushed a commit to branch camel-spring-boot-3.x
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git
The following commit(s) were added to refs/heads/camel-spring-boot-3.x by this
push:
new 689b3dfa927 Update to use camel.lra.enabled (#752)
689b3dfa927 is described below
commit 689b3dfa9274438b233e9fb65ab80563f1fc430a
Author: Zheng Feng <[email protected]>
AuthorDate: Thu Feb 16 14:04:01 2023 +0800
Update to use camel.lra.enabled (#752)
---
.../camel/service/lra/springboot/LraServiceAutoConfiguration.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/components-starter/camel-lra-starter/src/main/java/org/apache/camel/service/lra/springboot/LraServiceAutoConfiguration.java
b/components-starter/camel-lra-starter/src/main/java/org/apache/camel/service/lra/springboot/LraServiceAutoConfiguration.java
index 246daaa2c1a..abca6418e1d 100644
---
a/components-starter/camel-lra-starter/src/main/java/org/apache/camel/service/lra/springboot/LraServiceAutoConfiguration.java
+++
b/components-starter/camel-lra-starter/src/main/java/org/apache/camel/service/lra/springboot/LraServiceAutoConfiguration.java
@@ -54,7 +54,7 @@ public class LraServiceAutoConfiguration {
@Bean(name = "lra-service")
@ConditionalOnMissingBean(CamelSagaService.class)
- @ConditionalOnProperty(value = "camel.service.lra.enabled", havingValue =
"true")
+ @ConditionalOnProperty(value = "camel.lra.enabled", havingValue = "true")
public LRASagaService configureLraSagaService(LraServiceConfiguration
configuration) throws Exception {
LRASagaService service = new LRASagaService();