You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This only affects nmos-cpp Nodes which are built against cpprestsdk configured (at CMake time) with CPPREST_HTTP_CLIENT_IMPL=asio, which is the default on Linux but not Windows.
It only affects such Nodes when communicating with a Registry which only supports HTTP/1.0.
And it only causes any trouble when that Registry does not respond with a Connection: Keep-Alive header, but closes the connection after each response.
In this case, cpprestsdk still attempts to reuse the connection, and so the next request always fails.
This connection failure causes nmos-cpp Nodes to try the next available Registry.
This only affects nmos-cpp Nodes which are built against cpprestsdk configured (at CMake time) with
CPPREST_HTTP_CLIENT_IMPL=asio
, which is the default on Linux but not Windows.It only affects such Nodes when communicating with a Registry which only supports HTTP/1.0.
And it only causes any trouble when that Registry does not respond with a
Connection: Keep-Alive
header, but closes the connection after each response.In this case, cpprestsdk still attempts to reuse the connection, and so the next request always fails.
This connection failure causes nmos-cpp Nodes to try the next available Registry.
This can be resolved by microsoft/cpprestsdk#1032, but this is not yet merged to cpprestsdk master.
The text was updated successfully, but these errors were encountered: