Calling GET endpoint that takes more than 60s to respond, results to "Timeout waiting for socket to read." error.
There is a fixed timeout when waiting for the socket in curl.cpp:
// start polling operation
auto pollUntilSocketIsReady = pollSocketUntilEventOrTimeout(
context, m_curlSocket, PollSocketDirection::Read, 60000L);
It would be better to have this configurable, for example from the context HttpResponseTimeout.
Calling GET endpoint that takes more than 60s to respond, results to "Timeout waiting for socket to read." error.
There is a fixed timeout when waiting for the socket in curl.cpp:
It would be better to have this configurable, for example from the context HttpResponseTimeout.