fixed double-slash in path

git-svn-id: http://jclouds.googlecode.com/svn/trunk@2002 3d8758e0-26b5-11de-8745-db77d3ebf521
This commit is contained in:
adrian.f.cole 2009-10-30 03:20:27 +00:00
parent 050f6e9a82
commit 7171f2c431
1 changed files with 4 additions and 2 deletions

View File

@ -70,8 +70,10 @@ public class ParseURIFromListOrLocationHeaderIf20x implements Function<HttpRespo
if (locationUri.getHost() != null)
return locationUri;
checkState(request != null, "request should have been initialized");
UriBuilder builder = UriBuilder.fromUri(URI.create("http://localhost/"+locationUri));
if (!location.startsWith("/"))
location = "/" + location;
UriBuilder builder = UriBuilder.fromUri(URI.create("http://localhost"
+ locationUri.getPath()));
builder.host(request.getEndpoint().getHost());
builder.port(request.getEndpoint().getPort());
builder.scheme(request.getEndpoint().getScheme());