mirror of
https://github.com/versity/versitygw.git
synced 2026-01-07 20:25:12 +00:00
Fixes #816 `ListObjects(V2)` used to return truncated response, if delimiter is provided and the result is limited by max-keys and the number of common prefixes is the same as `max-keys`. e.g PUT -> `foo/bar` PUT -> `foo/quxx` LIST: `max-keys=1;delim=/` -> foo/ `ListObjects(V2)` should return `foo/` as common prefix and `truncated` should be `false`. The PR makes this fix to return `non-truncated` response for the above described case.