-
Notifications
You must be signed in to change notification settings - Fork 180
Open
Labels
Milestone
Description
Hello!
In Kubernetes world, where an IP of a host can change often, catching all socket errors is not very helpful.
For example, if the IP of statsd host is changed, the UDP client does not reconnect to this new IP and the only solution to create a new connection with the new IP of the statsd host is to restart the client.
The line with catches all these errors is
Line 45 in 006a863
except (socket.error, RuntimeError): |