We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d41af3f commit 5d3f955Copy full SHA for 5d3f955
1 file changed
sdk/core/azure-core/src/http/curl/curl.cpp
@@ -161,6 +161,7 @@ int pollSocketUntilEventOrTimeout(
161
result = poll(&poller, 1, pollTimeoutMs);
162
if (result < 0 && EINTR == errno)
163
{
164
+ now = std::chrono::steady_clock::now();
165
continue;
166
}
167
#elif defined(AZ_PLATFORM_WINDOWS)
0 commit comments