forked from Deuxfleurs/garage
Allow 0 as a part number marker
This commit is contained in:
parent
f4d3905d15
commit
92fd899fb6
1 changed files with 1 additions and 1 deletions
|
@ -344,7 +344,7 @@ impl ApiHandler for S3ApiServer {
|
|||
bucket_id,
|
||||
key,
|
||||
upload_id,
|
||||
part_number_marker: part_number_marker.map(|p| p.clamp(1, 10000)),
|
||||
part_number_marker: part_number_marker.map(|p| p.min(10000)),
|
||||
max_parts: max_parts.unwrap_or(1000).clamp(1, 1000),
|
||||
},
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue