Fix an important metadata getObject bug in donut

master
Harshavardhana 9 years ago
parent 81cc017f91
commit 3b070dee16
  1. 2
      pkg/donut/bucket.go

@ -135,7 +135,7 @@ func (b bucket) getBucketMetadata() (*AllBuckets, *probe.Error) {
func (b bucket) GetObjectMetadata(objectName string) (ObjectMetadata, *probe.Error) { func (b bucket) GetObjectMetadata(objectName string) (ObjectMetadata, *probe.Error) {
b.lock.Lock() b.lock.Lock()
defer b.lock.Unlock() defer b.lock.Unlock()
return b.readObjectMetadata(objectName) return b.readObjectMetadata(normalizeObjectName(objectName))
} }
// ListObjects - list all objects // ListObjects - list all objects

Loading…
Cancel
Save