diff options
author | Alex Auvolat <alex@adnab.me> | 2024-03-06 19:23:36 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2024-03-07 15:43:48 +0100 |
commit | 3fcb54e3cf62cdc9ed84751e1f0522ff553ea63c (patch) | |
tree | 7c0eb4ebf106c3e624426bd6569b1c1bb4d20e01 /src/api/s3/list.rs | |
parent | e3333f2ac5d142b6faddc6d54bcf35a0465be4bb (diff) | |
download | garage-3fcb54e3cf62cdc9ed84751e1f0522ff553ea63c.tar.gz garage-3fcb54e3cf62cdc9ed84751e1f0522ff553ea63c.zip |
[sse-c] Remove special case for Content-Type headersse-c
Diffstat (limited to 'src/api/s3/list.rs')
-rw-r--r-- | src/api/s3/list.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/api/s3/list.rs b/src/api/s3/list.rs index a7eebbb1..1678f1fa 100644 --- a/src/api/s3/list.rs +++ b/src/api/s3/list.rs @@ -945,10 +945,7 @@ mod tests { state: ObjectVersionState::Uploading { multipart: true, encryption: ObjectVersionEncryption::Plaintext { - headers: ObjectVersionHeaders { - content_type: "text/plain".to_string(), - other: BTreeMap::<String, String>::new(), - }, + headers: ObjectVersionHeaders(vec![]), }, }, } |