mirror of
https://github.com/minio/minio.git
synced 2025-11-09 21:49:46 -05:00
Handling maxKeys=0 case with a empty response
This commit is contained in:
@@ -64,7 +64,12 @@ func (fs Filesystem) ListObjects(bucket, prefix, marker, delimiter string, maxKe
|
||||
}
|
||||
}
|
||||
|
||||
if maxKeys <= 0 || maxKeys > listObjectsLimit {
|
||||
// Return empty response for a valid request when maxKeys is 0.
|
||||
if maxKeys == 0 {
|
||||
return result, nil
|
||||
}
|
||||
|
||||
if maxKeys < 0 || maxKeys > listObjectsLimit {
|
||||
maxKeys = listObjectsLimit
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user