Support any string as delimiter for listing (#7882)

This commit is contained in:
Krishna Srinivas
2019-07-05 14:06:12 -07:00
committed by Harshavardhana
parent cc7dc61eb4
commit a2e904b966
6 changed files with 191 additions and 11 deletions
-7
View File
@@ -46,13 +46,6 @@ func validateListObjectsArgs(prefix, marker, delimiter, encodingType string, max
}
}
/// MinIO special conditions for ListObjects.
// Verify if delimiter is anything other than '/', which we do not support.
if delimiter != "" && delimiter != "/" {
return ErrNotImplemented
}
// Success.
return ErrNone
}