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());