This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch 2.13.x in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit f32f86ec9fcd9ef7e7fdb3b8e6a79846fc0e1223 Author: James Netherton <[email protected]> AuthorDate: Fri Nov 25 09:01:12 2022 +0000 Properly fix platform-http docs --- extensions/platform-http/runtime/src/main/doc/usage.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/platform-http/runtime/src/main/doc/usage.adoc b/extensions/platform-http/runtime/src/main/doc/usage.adoc index f324692afb..d4168c23ef 100644 --- a/extensions/platform-http/runtime/src/main/doc/usage.adoc +++ b/extensions/platform-http/runtime/src/main/doc/usage.adoc @@ -87,9 +87,9 @@ Platform HTTP component can act as a reverse proxy, in that case `Exchange.HTTP_ Here's an example of a HTTP proxy that simply redirects the Exchange to the origin server. [source,java] ------------------------------------------------------------------------------------------- +---- from("platform-http:proxy") .toD("http://" + "${headers." + Exchange.HTTP_HOST + "}"); -------------------------------------------------------------------------------------- +----
