diff --git a/sdk/core/azure-core/CHANGELOG.md b/sdk/core/azure-core/CHANGELOG.md index 48304a699..2e5df9d58 100644 --- a/sdk/core/azure-core/CHANGELOG.md +++ b/sdk/core/azure-core/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -## 1.4.0-beta.1 (Unreleased) +## 1.3.1 (Unreleased) ### Features Added @@ -8,6 +8,8 @@ ### Bugs Fixed +- Fixed linking error when Azure SDK is being built as DLL. + ### Other Changes ## 1.3.0 (2021-11-04) diff --git a/sdk/core/azure-core/inc/azure/core/http/curl_transport.hpp b/sdk/core/azure-core/inc/azure/core/http/curl_transport.hpp index 2bfb7d172..87f2258a3 100644 --- a/sdk/core/azure-core/inc/azure/core/http/curl_transport.hpp +++ b/sdk/core/azure-core/inc/azure/core/http/curl_transport.hpp @@ -20,8 +20,7 @@ namespace Azure { namespace Core { namespace Http { * to take. * */ - AZ_CORE_DLLEXPORT static const std::chrono::milliseconds DefaultConnectionTimeout - = std::chrono::milliseconds(300000); + constexpr std::chrono::milliseconds DefaultConnectionTimeout = std::chrono::minutes(5); } // namespace _detail /**