From 5a2df4a104d7b96f7e9bca892535f46d64dd4c3f Mon Sep 17 00:00:00 2001 From: Yongqiang YANG Date: Thu, 26 Dec 2024 23:37:16 +0800 Subject: [PATCH] fix --- be/src/util/s3_util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/src/util/s3_util.cpp b/be/src/util/s3_util.cpp index f87389b6b3e1191..0a298462290b60e 100644 --- a/be/src/util/s3_util.cpp +++ b/be/src/util/s3_util.cpp @@ -255,7 +255,7 @@ std::shared_ptr S3ClientFactory::_create_azure_client( const std::string container_name = s3_conf.bucket; const std::string uri = fmt::format("{}://{}.blob.core.windows.net/{}", - config::s3_client_http_scheme, s3_conf.ak, container_name); + "https", s3_conf.ak, container_name); auto containerClient = std::make_shared(uri, cred); LOG_INFO("create one azure client with {}", s3_conf.to_string());