diff options
author | Alex Auvolat <alex@adnab.me> | 2021-02-19 23:40:18 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2021-02-19 23:40:18 +0100 |
commit | 1de96248e0e4aae27995eb08e9019842b327d1a3 (patch) | |
tree | 45c3c19a6bcccc7fb8b8674f23e2b4d4301b1e58 /src/api/s3_list.rs | |
parent | 0ddfee92c5f1787d452a04ea0b7620bdf95df761 (diff) | |
download | garage-1de96248e0e4aae27995eb08e9019842b327d1a3.tar.gz garage-1de96248e0e4aae27995eb08e9019842b327d1a3.zip |
add application/xml header and missing xml escapes
Diffstat (limited to 'src/api/s3_list.rs')
-rw-r--r-- | src/api/s3_list.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/api/s3_list.rs b/src/api/s3_list.rs index 39ede3e2..2be47091 100644 --- a/src/api/s3_list.rs +++ b/src/api/s3_list.rs @@ -271,5 +271,7 @@ pub async fn handle_list( writeln!(&mut xml, "</ListBucketResult>").unwrap(); debug!("{}", xml); - Ok(Response::new(Body::from(xml.into_bytes()))) + Ok(Response::builder() + .header("Content-Type", "application/xml") + .body(Body::from(xml.into_bytes()))?) } |