mirror of
https://github.com/minio/minio.git
synced 2025-01-24 13:13:16 -05:00
Handling maxKeys=0 case with a empty response
This commit is contained in:
parent
2357e00317
commit
99af0444b7
@ -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
|
maxKeys = listObjectsLimit
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user