mirror of https://github.com/apache/jclouds.git
Fix port number in the parseauthentication
This commit is contained in:
parent
37e2cc7c1b
commit
f9d25a1302
|
@ -89,7 +89,11 @@ public class ParseAuthenticationResponseFromHeaders implements Function<HttpResp
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public ParseAuthenticationResponseFromHeaders setContext(HttpRequest request) {
|
public ParseAuthenticationResponseFromHeaders setContext(HttpRequest request) {
|
||||||
return setHostToReplace(request.getEndpoint().getHost());
|
String host = request.getEndpoint().getHost();
|
||||||
|
if (request.getEndpoint().getPort() != -1) {
|
||||||
|
host += ":" + request.getEndpoint().getPort();
|
||||||
|
}
|
||||||
|
return setHostToReplace(host);
|
||||||
}
|
}
|
||||||
|
|
||||||
@VisibleForTesting
|
@VisibleForTesting
|
||||||
|
|
Loading…
Reference in New Issue