Skip to content

Commit

Permalink
fix missing-field-initializers
Browse files Browse the repository at this point in the history
  • Loading branch information
liuneng1994 committed Apr 24, 2024
1 parent 831c4db commit 76b989e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,8 @@ Azure::Storage::Blobs::BlobClientOptions getAzureBlobClientOptions(const Poco::U
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};
CurlOptions curl_options;
curl_options.NoSignal = true;

if (config.has(config_prefix + ".curl_ip_resolve"))
{
Expand Down

0 comments on commit 76b989e

Please sign in to comment.