You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2019/08/01 11:08:13 UTC

[camel] 01/02: CAMEL-13792 - Rename components to default names, Camel-http4 to Camel-http - Removed reference to http4 in camel-spring-boot

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 bc8bfa01e18656ee2d96394e3e70b8c431504250
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Aug 1 13:02:21 2019 +0200

    CAMEL-13792 - Rename components to default names, Camel-http4 to Camel-http - Removed reference to http4 in camel-spring-boot
---
 components/camel-spring-boot/src/main/docs/spring-boot.adoc             | 2 +-
 .../camel/spring/boot/cloud/CamelCloudConfigurationProperties.java      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/components/camel-spring-boot/src/main/docs/spring-boot.adoc b/components/camel-spring-boot/src/main/docs/spring-boot.adoc
index 84b2d22..fa08bbd 100644
--- a/components/camel-spring-boot/src/main/docs/spring-boot.adoc
+++ b/components/camel-spring-boot/src/main/docs/spring-boot.adoc
@@ -98,7 +98,7 @@ The component supports 126 options, which are listed below.
 | Name | Description | Default | Type
 | *camel.cloud.enabled* | Global option to enable/disable Camel cloud support, default is true. | true | Boolean
 | *camel.cloud.load-balancer.enabled* | Global option to enable/disable Camel cloud load balancer, default is true. | true | Boolean
-| *camel.cloud.service-call.component* | The Camel component to use for calling the service. The default is http4 component. |  | String
+| *camel.cloud.service-call.component* | The Camel component to use for calling the service. The default is http component. |  | String
 | *camel.cloud.service-call.default-load-balancer* | Determine if the default load balancer should be used instead of any auto discovered one. | false | Boolean
 | *camel.cloud.service-call.expression* | The expression to use. |  | String
 | *camel.cloud.service-call.expression-language* | The expression language to use, default is ref. | ref | String
diff --git a/components/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/cloud/CamelCloudConfigurationProperties.java b/components/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/cloud/CamelCloudConfigurationProperties.java
index fa00d87..2185950 100644
--- a/components/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/cloud/CamelCloudConfigurationProperties.java
+++ b/components/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/cloud/CamelCloudConfigurationProperties.java
@@ -81,7 +81,7 @@ public class CamelCloudConfigurationProperties {
         private String uri;
 
         /**
-         * The Camel component to use for calling the service. The default is http4 component.
+         * The Camel component to use for calling the service. The default is http component.
          */
         private String component = ServiceCallDefinitionConstants.DEFAULT_COMPONENT;