Merge pull request #2179 from Windfarer/master

Fixing acronym's case
This commit is contained in:
Derek McGowan 2017-02-07 14:24:14 -08:00 committed by GitHub
commit b1993c9530

View file

@ -80,7 +80,7 @@ func getOutstandingUploads(ctx context.Context, driver storageDriver.StorageDriv
}
uuid, isContainingDir := uUIDFromPath(filePath)
uuid, isContainingDir := uuidFromPath(filePath)
if uuid == "" {
// Cannot reliably delete
return nil
@ -111,10 +111,10 @@ func getOutstandingUploads(ctx context.Context, driver storageDriver.StorageDriv
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
// directory for all upload files
func uUIDFromPath(path string) (string, bool) {
func uuidFromPath(path string) (string, bool) {
components := strings.Split(path, "/")
for i := len(components) - 1; i >= 0; i-- {
if u, err := uuid.Parse(components[i]); err == nil {