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
Internally driver always uses `BoltServerAddress` to represent host
and port. These addresses are constructed from the initial driver
URI and from routing procedure output in routing driver. Bolt address
is only resolved to an `InetAddress` when new connection is established.
Resolved `InetSocketAddress` was cached in `BoltServerAddress` which
caused problems when corresponding DNS record changed. Driver would
then still try to connect to a cached stale `InetSocketAddress`.
This commit makes resolution happen on every connection.
0 commit comments