This is an automated email from the ASF dual-hosted git repository. github-bot pushed a commit to branch camel-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit c563a0906532b66f882a0fc565827452ce66fbe9 Author: JiriOndrusek <ondrusek.j...@gmail.com> AuthorDate: Mon Mar 27 17:32:24 2023 +0200 Fix in http component (caused by upgrade of httpclient) --- .../apache/camel/quarkus/component/http/deployment/HttpProcessor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/http/deployment/src/main/java/org/apache/camel/quarkus/component/http/deployment/HttpProcessor.java b/extensions/http/deployment/src/main/java/org/apache/camel/quarkus/component/http/deployment/HttpProcessor.java index 0ebe59d620..fcffc893fc 100644 --- a/extensions/http/deployment/src/main/java/org/apache/camel/quarkus/component/http/deployment/HttpProcessor.java +++ b/extensions/http/deployment/src/main/java/org/apache/camel/quarkus/component/http/deployment/HttpProcessor.java @@ -22,8 +22,8 @@ import io.quarkus.deployment.builditem.ExtensionSslNativeSupportBuildItem; import io.quarkus.deployment.builditem.FeatureBuildItem; import io.quarkus.deployment.builditem.nativeimage.ReflectiveClassBuildItem; import org.apache.camel.http.base.HttpOperationFailedException; +import org.apache.hc.client5.http.config.RequestConfig; import org.apache.hc.client5.http.impl.auth.BasicScheme; -import org.apache.http.client.config.RequestConfig; class HttpProcessor { public static final String FEATURE = "camel-http";