mirror of https://github.com/apache/jclouds.git
send HEAD instead of GET for blobMetadata
This commit is contained in:
parent
8859eaeb68
commit
320742c6b5
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue