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
The methods in ProxyConfig take an InetSocketAddress as an argument. e.g. ProxyConfig.connect(InetSocketAddress) InetSocketAddress resolves the address only once when it's created so it doesn't respect TTL of a DNS record, thus the client will keep sending the request to the old proxy.
We can probably take an Endpoint instead of InetSocketAddress and reimplement it to respect the TTL in the client.
The text was updated successfully, but these errors were encountered:
The methods in
ProxyConfig
take anInetSocketAddress
as an argument. e.g.ProxyConfig.connect(InetSocketAddress)
InetSocketAddress
resolves the address only once when it's created so it doesn't respect TTL of a DNS record, thus the client will keep sending the request to the old proxy.We can probably take an
Endpoint
instead ofInetSocketAddress
and reimplement it to respect the TTL in the client.The text was updated successfully, but these errors were encountered: