diff options
Diffstat (limited to 'src/api/s3_website.rs')
-rw-r--r-- | src/api/s3_website.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/api/s3_website.rs b/src/api/s3_website.rs index 8686b832..e141e449 100644 --- a/src/api/s3_website.rs +++ b/src/api/s3_website.rs @@ -20,7 +20,7 @@ pub async fn handle_delete_website( ) -> Result<Response<Body>, Error> { let mut bucket = garage .bucket_table - .get(&bucket_id, &EmptyKey) + .get(&EmptyKey, &bucket_id) .await? .ok_or(Error::NotFound)?; @@ -48,7 +48,7 @@ pub async fn handle_put_website( let mut bucket = garage .bucket_table - .get(&bucket_id, &EmptyKey) + .get(&EmptyKey, &bucket_id) .await? .ok_or(Error::NotFound)?; |