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 af773d814b17e8533ead23d3989efdff6340fea9 Author: Andrea Cosentino <[email protected]> AuthorDate: Thu Mar 11 07:07:04 2021 +0100 Camel-Http: Fixed scheme with "//" --- .../src/main/java/org/apache/camel/component/http/HttpEndpoint.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/camel-http/src/main/java/org/apache/camel/component/http/HttpEndpoint.java b/components/camel-http/src/main/java/org/apache/camel/component/http/HttpEndpoint.java index f37bfea..1df1a23 100644 --- a/components/camel-http/src/main/java/org/apache/camel/component/http/HttpEndpoint.java +++ b/components/camel-http/src/main/java/org/apache/camel/component/http/HttpEndpoint.java @@ -56,7 +56,7 @@ import org.slf4j.LoggerFactory; /** * Send requests to external HTTP servers using Apache HTTP Client 4.x. */ -@UriEndpoint(firstVersion = "2.3.0", scheme = "http,https", title = "HTTP,HTTPS", syntax = "http:httpUri", +@UriEndpoint(firstVersion = "2.3.0", scheme = "http,https", title = "HTTP,HTTPS", syntax = "http://httpUri", producerOnly = true, category = { Category.HTTP }, lenientProperties = true) @ManagedResource(description = "Managed HttpEndpoint") public class HttpEndpoint extends HttpCommonEndpoint {
