send HEAD instead of GET for blobMetadata

This commit is contained in:
Ka-Hing Cheung 2015-06-11 16:34:51 -07:00 committed by Andrew Gaul
parent 8859eaeb68
commit 320742c6b5
1 changed files with 1 additions and 1 deletions

View File

@ -316,7 +316,7 @@ public class RegionScopedSwiftBlobStore implements BlobStore {
@Override
public BlobMetadata blobMetadata(String container, String name) {
SwiftObject object = api.getObjectApi(regionId, container).get(name);
SwiftObject object = api.getObjectApi(regionId, container).getWithoutBody(name);
if (object == null) {
return null;
}