This is an automated email from the ASF dual-hosted git repository.
davsclaus 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 c09991c CAMEL-16199: camel-http - Optimize headers added as request
headers in producer
c09991c is described below
commit c09991cf5855a9d09a0414a586f20fea0ca5d0f6
Author: Claus Ibsen <[email protected]>
AuthorDate: Tue Feb 16 06:15:06 2021 +0100
CAMEL-16199: camel-http - Optimize headers added as request headers in
producer
---
.../src/main/java/org/apache/camel/component/http/HttpComponent.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/components/camel-http/src/main/java/org/apache/camel/component/http/HttpComponent.java
b/components/camel-http/src/main/java/org/apache/camel/component/http/HttpComponent.java
index 65d4029..fda1d1f 100644
---
a/components/camel-http/src/main/java/org/apache/camel/component/http/HttpComponent.java
+++
b/components/camel-http/src/main/java/org/apache/camel/component/http/HttpComponent.java
@@ -147,7 +147,7 @@ public class HttpComponent extends HttpCommonComponent
implements RestProducerFa
description = "The time for connection to live, the time unit is
millisecond, the default value is always keep alive.")
protected long connectionTimeToLive = -1;
@Metadata(label = "security", defaultValue = "false", description =
"Enable usage of global SSL context parameters.")
- private boolean useGlobalSslContextParameters;
+ protected boolean useGlobalSslContextParameters;
@Metadata(label = "producer", defaultValue = "8192",
description = "This threshold in bytes controls whether the
response payload"
+ " should be stored in memory as a byte array or
be streaming based. Set this to -1 to always use streaming mode.")