diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2021-11-24 10:00:07 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-01-12 17:07:40 +0100 |
commit | ce357b9a123369f953be3fbcb22e87d3304e2e4b (patch) | |
tree | 29357956ccc86becf0c62ee07fbbb1908efa34d2 /src/api/s3_router.rs | |
parent | 9cb2e9e57ce1aab23d8c3b2aaa7581c8e8b78253 (diff) | |
download | garage-ce357b9a123369f953be3fbcb22e87d3304e2e4b.tar.gz garage-ce357b9a123369f953be3fbcb22e87d3304e2e4b.zip |
Add ListMultipartUploads + Refactor ListObjects
Diffstat (limited to 'src/api/s3_router.rs')
-rw-r--r-- | src/api/s3_router.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/s3_router.rs b/src/api/s3_router.rs index 234f77f0..a8ac0086 100644 --- a/src/api/s3_router.rs +++ b/src/api/s3_router.rs @@ -350,7 +350,7 @@ pub enum Endpoint { delimiter: Option<char>, encoding_type: Option<String>, key_marker: Option<String>, - max_uploads: Option<u64>, + max_uploads: Option<usize>, prefix: Option<String>, upload_id_marker: Option<String>, }, |