fixing acronyms case

Signed-off-by: Eric Yang <qizhao.yang@daocloud.io>
This commit is contained in:
Eric Yang 2017-01-31 01:18:22 +08:00
parent fb0bebc4b6
commit 2d20471cd7

View file

@ -80,7 +80,7 @@ func getOutstandingUploads(ctx context.Context, driver storageDriver.StorageDriv
} }
uuid, isContainingDir := uUIDFromPath(filePath) uuid, isContainingDir := uuidFromPath(filePath)
if uuid == "" { if uuid == "" {
// Cannot reliably delete // Cannot reliably delete
return nil return nil
@ -111,10 +111,10 @@ func getOutstandingUploads(ctx context.Context, driver storageDriver.StorageDriv
return uploads, errors return uploads, errors
} }
// uUIDFromPath extracts the upload UUID from a given path // uuidFromPath extracts the upload UUID from a given path
// If the UUID is the last path component, this is the containing // If the UUID is the last path component, this is the containing
// directory for all upload files // directory for all upload files
func uUIDFromPath(path string) (string, bool) { func uuidFromPath(path string) (string, bool) {
components := strings.Split(path, "/") components := strings.Split(path, "/")
for i := len(components) - 1; i >= 0; i-- { for i := len(components) - 1; i >= 0; i-- {
if u, err := uuid.Parse(components[i]); err == nil { if u, err := uuid.Parse(components[i]); err == nil {