You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ji...@apache.org on 2023/04/19 07:58:31 UTC

[camel-quarkus] 06/30: Fix in http component (caused by upgrade of httpclient)

This is an automated email from the ASF dual-hosted git repository.

jiriondrusek pushed a commit to branch camel-main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit 2cd039f7a7ac1e048ff7394b3f78cf1cc829b792
Author: JiriOndrusek <on...@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";