From 6ae8bbeb133677af3e44e480dd465fa33c6017be Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Fri, 10 Jun 2022 11:06:32 +0200 Subject: typo in error message --- src/api/s3/put.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/s3/put.rs b/src/api/s3/put.rs index ab56e237..bbe7fd34 100644 --- a/src/api/s3/put.rs +++ b/src/api/s3/put.rs @@ -260,7 +260,7 @@ async fn check_quotas( let current_size = counters.get(BYTES).cloned().unwrap_or_default(); if cnt_size_diff > 0 && current_size + cnt_size_diff > ms as i64 { return Err(Error::forbidden(format!( - "Bucket size quota is reached, maximum total sie of objects for this bucket: {}. The bucket is already {} bytes, and this object would add {} bytes.", + "Bucket size quota is reached, maximum total size of objects for this bucket: {}. The bucket is already {} bytes, and this object would add {} bytes.", ms, current_size, size ))); } -- cgit v1.2.3