This is an automated email from the ASF dual-hosted git repository.
aldettinger pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new 26e2fb08fac vertx-http: fix documentation
26e2fb08fac is described below
commit 26e2fb08fac6d56ad8e2dee534d8472c637b7605
Author: aldettinger <[email protected]>
AuthorDate: Wed Mar 15 13:47:10 2023 +0100
vertx-http: fix documentation
---
.../camel-vertx-http/src/main/docs/vertx-http-component.adoc | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git
a/components/camel-vertx/camel-vertx-http/src/main/docs/vertx-http-component.adoc
b/components/camel-vertx/camel-vertx-http/src/main/docs/vertx-http-component.adoc
index 5a9ba99ea9a..a8fc8022e05 100644
---
a/components/camel-vertx/camel-vertx-http/src/main/docs/vertx-http-component.adoc
+++
b/components/camel-vertx/camel-vertx-http/src/main/docs/vertx-http-component.adoc
@@ -13,7 +13,7 @@
*{component-header}*
-The http://vertx.io/[Vert.x] HTTP component provides the capability to produce
messages to HTTP endpoints via the
https://vertx.io/docs/vertx-web-client/java/[Vert.x Web Client].
+The https://vertx.io/[Vert.x] HTTP component provides the capability to
produce messages to HTTP endpoints via the
https://vertx.io/docs/vertx-web-client/java/[Vert.x Web Client].
Maven users will need to add the following dependency to their `pom.xml`
for this component:
@@ -133,7 +133,7 @@ WebClientOptions options = new
WebClientOptions().setMaxRedirects(5)
.setIdleTimeout(10)
.setConnectTimeout(3);
-camelContext.getRegistry.bind("clinetOptions", options);
+camelContext.getRegistry.bind("clientOptions", options);
---------------------------
Then reference the options on the `vertx-http` producer.
@@ -141,7 +141,7 @@ Then reference the options on the `vertx-http` producer.
[source,java]
---------------------------
from("direct:start")
- .to("vertx-http:http://localhost:8080?webClientOptions=#options")
+ .to("vertx-http:http://localhost:8080?webClientOptions=#clientOptions")
---------------------------
== SSL