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 referenced fix introduces a map from java.util.URL to a Lock. That has the side effect of calling getInetAddress(url.host), which significantly impacts the performance if you are running the JVM with a proxy with -Dhttp.proxyHost and -Dhttp.proxyPort.
Before the call to hashCode the JVM handled the proxy connection transparently.
The text was updated successfully, but these errors were encountered:
This PR introduced the regression: #5749
The referenced fix introduces a map from
java.util.URL
to aLock
. That has the side effect of callinggetInetAddress(url.host)
, which significantly impacts the performance if you are running the JVM with a proxy with-Dhttp.proxyHost
and-Dhttp.proxyPort
.Before the call to
hashCode
the JVM handled the proxy connection transparently.The text was updated successfully, but these errors were encountered: