Fix JCLOUDS-250 for the common case where blob names do not contain /

This commit is contained in:
Francis Devereux 2013-08-21 15:55:44 +01:00 committed by Everett Toews
parent c11614400f
commit d05e77b8b6
1 changed files with 1 additions and 1 deletions

View File

@ -267,7 +267,7 @@ public interface CommonSwiftAsyncClient extends Closeable {
@PUT
@Path("/{container}/{name}")
@ResponseParser(ParseETagHeader.class)
@Headers(keys = "X-Object-Manifest", values="{container}/{name}")
@Headers(keys = "X-Object-Manifest", values="{container}/{name}/")
ListenableFuture<String> putObjectManifest(@PathParam("container") String container,
@PathParam("name") String name);
}