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
On AutoJsonRpcClientProxyCreator
new URL(baseUrl, path) - here baseUrl is truncated if there is something in the path other than the host, like host.com/myService transform to just host.com
private String appendBasePath(String path) {
try {
return new URL(baseUrl, path).toString();
} catch (MalformedURLException e) {
throw new IllegalArgumentException(format("Cannot combine URLs '%s' and '%s' to valid URL.", baseUrl, path), e);
}
}
The text was updated successfully, but these errors were encountered:
On AutoJsonRpcClientProxyCreator
new URL(baseUrl, path) - here baseUrl is truncated if there is something in the path other than the host, like
host.com/myService transform to just host.com
The text was updated successfully, but these errors were encountered: