aboutsummaryrefslogtreecommitdiff
path: root/src/api/s3/put.rs
diff options
context:
space:
mode:
authorAlex Auvolat <lx@deuxfleurs.fr>2025-01-27 19:58:06 +0100
committerAlex Auvolat <lx@deuxfleurs.fr>2025-01-27 19:58:06 +0100
commite8fa89e8348522c368eb17e89ab3209e6a734088 (patch)
tree7dc587d54a6511ab99f3a681f5c5ab9bf9008bd7 /src/api/s3/put.rs
parentd4e3e609209eb52d820338daf628df7cf09881ab (diff)
downloadgarage-e8fa89e8348522c368eb17e89ab3209e6a734088.tar.gz
garage-e8fa89e8348522c368eb17e89ab3209e6a734088.zip
s3 api: make x-amz-meta-* headers lowercase (fix #844)fix-844
Diffstat (limited to 'src/api/s3/put.rs')
-rw-r--r--src/api/s3/put.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/s3/put.rs b/src/api/s3/put.rs
index 1e3b1b44..bfb0dc9b 100644
--- a/src/api/s3/put.rs
+++ b/src/api/s3/put.rs
@@ -622,7 +622,7 @@ pub(crate) fn get_headers(headers: &HeaderMap<HeaderValue>) -> Result<HeaderList
for (name, value) in headers.iter() {
if name.as_str().starts_with("x-amz-meta-") {
ret.push((
- name.to_string(),
+ name.as_str().to_ascii_lowercase(),
std::str::from_utf8(value.as_bytes())?.to_string(),
));
}