aboutsummaryrefslogtreecommitdiff
path: root/src/api/s3/put.rs
diff options
context:
space:
mode:
authorAlex <lx@deuxfleurs.fr>2025-01-27 19:32:19 +0000
committerAlex <lx@deuxfleurs.fr>2025-01-27 19:32:19 +0000
commita1d081ee840b1727ba1b3f430638a1296738283e (patch)
tree1c4822ec7dec299af99afa22a0614408bc74aabb /src/api/s3/put.rs
parentbeedc9fd11d24ccce837cc229ea6c30c980f9baa (diff)
parente8fa89e8348522c368eb17e89ab3209e6a734088 (diff)
downloadgarage-a1d081ee840b1727ba1b3f430638a1296738283e.tar.gz
garage-a1d081ee840b1727ba1b3f430638a1296738283e.zip
Merge pull request 's3 api: make x-amz-meta-* headers lowercase (fix #844)' (#938) from fix-844 into main
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/938
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(),
));
}