From 47f7f76075b184e645b2d486143cd823c6fd7311 Mon Sep 17 00:00:00 2001 From: wgzhao Date: Wed, 9 Oct 2024 10:01:35 +0800 Subject: [PATCH] [update][plugin][starrockswriter] Switch to HttpComponents 4.x due to incompatibility with Starrocks backend The Starrocks backend requires the URI to include the userinfo component. However, HttpClient 5.x has removed support for the userinfo component. This commit addresses this issue by ensuring compatibility with the Doris backend. --- plugin/writer/starrockswriter/pom.xml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/plugin/writer/starrockswriter/pom.xml b/plugin/writer/starrockswriter/pom.xml index 11e749538..05515b57f 100755 --- a/plugin/writer/starrockswriter/pom.xml +++ b/plugin/writer/starrockswriter/pom.xml @@ -69,13 +69,7 @@ org.apache.httpcomponents httpclient - ${httpclient.version} - - - - org.apache.httpcomponents - httpcore - ${httpcore.version} + 4.5.14