mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-27 18:12:02 +00:00
fix build and update submodule
This commit is contained in:
parent
47c653f87c
commit
03916cc13f
2
contrib/azure
vendored
2
contrib/azure
vendored
@ -1 +1 @@
|
||||
Subproject commit e71395e44f309f97b5a486f5c2c59b82f85dd2d2
|
||||
Subproject commit d29ae0f8e3ae48f0e7a1771ef4f7eda41371b8a0
|
@ -185,12 +185,12 @@ Azure::Storage::Blobs::BlobClientOptions getAzureBlobClientOptions(const Poco::U
|
||||
Azure::Core::Http::Policies::RetryOptions retry_options;
|
||||
retry_options.MaxRetries = config.getUInt(config_prefix + ".max_tries", 10);
|
||||
retry_options.RetryDelay = std::chrono::milliseconds(config.getUInt(config_prefix + ".retry_initial_backoff_ms", 10));
|
||||
retry_options.MaxRetryDelay = std::chrono::milliseconds(config.getUInt(config_prefix + ".retry_initial_backoff_ms", 1000));
|
||||
retry_options.MaxRetryDelay = std::chrono::milliseconds(config.getUInt(config_prefix + ".retry_max_backoff_ms", 1000));
|
||||
|
||||
using CurlOptions = Azure::Core::Http::CurlTransportOptions;
|
||||
CurlOptions curl_options{.NoSignal = true};
|
||||
|
||||
if (config.has(config_prefix + ".ip_resolve"))
|
||||
if (config.has(config_prefix + ".curl_ip_resolve"))
|
||||
{
|
||||
auto value = config.getString(config_prefix + ".curl_ip_resolve");
|
||||
if (value == "ipv4")
|
||||
|
Loading…
Reference in New Issue
Block a user