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
{{ message }}
This repository has been archived by the owner on Sep 1, 2024. It is now read-only.
If the desire is for this client to be able to work with services that dynamically change their DNS name entries (many in AWS, GCP, etc), we need to update UdpInlineSender.
Inn UdpInlineSender, recreating the InetSocketAddress passed in to channel.send would allow for dynamic DNS resolution.
In the HTTP sender, I believe we are in good shape. The URL class's DNS lookup functionality (as strange as this is) is only used for equals and hashcode...hence opening each new connection as the code in this library does should result in fresh DNS lookups against JVM cache.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
If the desire is for this client to be able to work with services that dynamically change their DNS name entries (many in AWS, GCP, etc), we need to update
UdpInlineSender
.Inn UdpInlineSender, recreating the
InetSocketAddress
passed in tochannel.send
would allow for dynamic DNS resolution.In the HTTP sender, I believe we are in good shape. The
URL
class's DNS lookup functionality (as strange as this is) is only used for equals and hashcode...hence opening each new connection as the code in this library does should result in fresh DNS lookups against JVM cache.The text was updated successfully, but these errors were encountered: