mirror of https://github.com/apache/jclouds.git
fixed double-slash in path
git-svn-id: http://jclouds.googlecode.com/svn/trunk@2004 3d8758e0-26b5-11de-8745-db77d3ebf521
This commit is contained in:
parent
cfab82d775
commit
1bc88f36f2
|
@ -72,8 +72,7 @@ public class ParseURIFromListOrLocationHeaderIf20x implements Function<HttpRespo
|
|||
checkState(request != null, "request should have been initialized");
|
||||
if (!location.startsWith("/"))
|
||||
location = "/" + location;
|
||||
UriBuilder builder = UriBuilder.fromUri(URI.create("http://localhost"
|
||||
+ locationUri.getPath()));
|
||||
UriBuilder builder = UriBuilder.fromUri(URI.create("http://localhost" + location));
|
||||
builder.host(request.getEndpoint().getHost());
|
||||
builder.port(request.getEndpoint().getPort());
|
||||
builder.scheme(request.getEndpoint().getScheme());
|
||||
|
|
Loading…
Reference in New Issue