This is an automated email from the ASF dual-hosted git repository. lide pushed a commit to branch branch-1.2-lts in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-1.2-lts by this push: new 7a42781785 [fix](http) Let the sdk find the httpclient package determined (#20223) 7a42781785 is described below commit 7a42781785cca623e018d2f185d902f2ec9779e2 Author: yuxuan-luo <119841515+yuxuan-...@users.noreply.github.com> AuthorDate: Tue May 30 17:14:09 2023 +0800 [fix](http) Let the sdk find the httpclient package determined (#20223) --- fe/fe-core/src/main/java/org/apache/doris/backup/S3Storage.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fe/fe-core/src/main/java/org/apache/doris/backup/S3Storage.java b/fe/fe-core/src/main/java/org/apache/doris/backup/S3Storage.java index a1e42a0d90..b6f0e0752f 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/backup/S3Storage.java +++ b/fe/fe-core/src/main/java/org/apache/doris/backup/S3Storage.java @@ -42,6 +42,7 @@ import software.amazon.awssdk.core.client.config.SdkAdvancedClientOption; import software.amazon.awssdk.core.retry.RetryPolicy; import software.amazon.awssdk.core.retry.backoff.EqualJitterBackoffStrategy; import software.amazon.awssdk.core.sync.RequestBody; +import software.amazon.awssdk.http.urlconnection.UrlConnectionHttpClient; import software.amazon.awssdk.regions.Region; import software.amazon.awssdk.services.s3.S3Client; import software.amazon.awssdk.services.s3.S3Configuration; @@ -189,6 +190,7 @@ public class S3Storage extends BlobStorage { URI endpoint = StringUtils.isEmpty(bucket) ? tmpEndpoint : URI.create(new URIBuilder(tmpEndpoint).setHost(bucket + "." + tmpEndpoint.getHost()).toString()); client = S3Client.builder() + .httpClient(UrlConnectionHttpClient.create()) .endpointOverride(endpoint) .credentialsProvider(scp) .region(Region.of(caseInsensitiveProperties.get(S3Resource.S3_REGION))) --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org