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/09 07:12:22 UTC

[camel] branch master updated: CAMEL-13792 - Rename components to default names, Camel-netty4-http to camel-netty-http - Updated camel-grape docs

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


The following commit(s) were added to refs/heads/master by this push:
     new e1526e2  CAMEL-13792 - Rename components to default names, Camel-netty4-http to camel-netty-http - Updated camel-grape docs
e1526e2 is described below

commit e1526e27e1fc5d464c0673716c40030f0c32becd
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Aug 9 09:11:41 2019 +0200

    CAMEL-13792 - Rename components to default names, Camel-netty4-http to camel-netty-http - Updated camel-grape docs
---
 components/camel-grape/src/main/docs/grape-component.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/components/camel-grape/src/main/docs/grape-component.adoc b/components/camel-grape/src/main/docs/grape-component.adoc
index 943a269..44cf763 100644
--- a/components/camel-grape/src/main/docs/grape-component.adoc
+++ b/components/camel-grape/src/main/docs/grape-component.adoc
@@ -219,7 +219,7 @@ the `CamelGrapeCommand` header set to `GrapeCommand.listPatches`:
 
 [source,java]
 ----------------------------------------------------------------------------------------
-      from("netty-http4:http://0.0.0.0:80/patches").
+      from("netty-http:http://0.0.0.0:80/patches").
         setHeader(GrapeConstats.GRAPE_COMMAND, constant(CamelGrapeCommand.listPatches)).
         to("grape:list"); 
 ----------------------------------------------------------------------------------------
@@ -240,7 +240,7 @@ command:
 
 [source,java]
 -----------------------------------------------------------------------------------------
-      from("netty-http4:http://0.0.0.0:80/patches").
+      from("netty-http:http://0.0.0.0:80/patches").
         setHeader(GrapeConstats.GRAPE_COMMAND, constant(CamelGrapeCommand.clearPatches)).
         setBody().constant("Installed patches have been deleted."); 
 -----------------------------------------------------------------------------------------