s3api: Make the 'Quiet' key value case insensitive
When deleting multiple objects, S3 allows to enable a quiet mode with the 'Quiet' key. At AWS S3, the value of this key is case-insensitive. - Quiet mode is enabled if the value is 'true' (regardless of case). - Otherwise, in all other cases (even a non-boolean value), this mode will be disabled. Also, some tools (like Minio's python API) send the value 'True' (and not 'true'). Change-Id: Id9d1da2017b8d13242ae1f410347febb013e9ce1
This commit is contained in:
4 changed files with 23 additions and 24 deletions
@@ -1,6 +1,6 @@
start =
element Delete {
element Quiet { xsd:boolean }? &
element Quiet { xsd:string }? &
element Object {
element Key { xsd:string } &
element VersionId { xsd:string }?
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.