mirror of https://github.com/apache/jclouds.git
send HEAD instead of GET for blobMetadata
This commit is contained in:
parent
05a9c79242
commit
5929117596
|
@ -303,7 +303,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