We've recently added StackExchange.Redis.StrongName to a few of our applications. It works as expected, with no known loss of data or connection.
However, we've started to receive the following exceptions relentlessly during startup and runtime.
System.Net.Sockets.SocketException (0x80004005): A socket operation was attempted to an unreachable network 0.0.24.235:6379 at System.Net.Sockets.Socket.InternalEndConnect(IAsyncResult asyncResult)
System.Net.Sockets.SocketException (0x80004005): A request to send or receive data was disallowed because the socket is not connected and (when sending on a datagram socket using a sendto call) no address was supplied at System.Net.Sockets.Socket.Shutdown(SocketShutdown how)
As I understand it, Redis runs inside a Docker (which is where is 0.0.24.235 originates), however I am unable to fathom why I am receiving constant exceptions yet everything works as expected. Googling this issue has not yielded any comparative results (that I can see).
I am yet to raise this on the StackExchange github, as I doubt it would be an issue with their system, else I suspect I would be able to find more information about it.
Has anyone has any experience with this issue?
User contributions licensed under CC BY-SA 3.0