You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2023/02/16 06:04:07 UTC

[camel-spring-boot] branch main updated: Update to use camel.lra.enabled (#752)

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-spring-boot.git


The following commit(s) were added to refs/heads/main by this push:
     new 991e6f5f1cd Update to use camel.lra.enabled (#752)
991e6f5f1cd is described below

commit 991e6f5f1cda0f63c9cce5e20a169511f652cad4
Author: Zheng Feng <zh...@gmail.com>
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();