forked from Deuxfleurs/garage
garage_api(fixup): Verify Content-SHA256 header for multipart upload only when needed.
This commit is contained in:
parent
b2eda2c13e
commit
11a1f3f6cf
1 changed files with 4 additions and 4 deletions
|
@ -504,11 +504,11 @@ pub async fn handle_complete_multipart_upload(
|
|||
upload_id: &str,
|
||||
content_sha256: Option<Hash>,
|
||||
) -> Result<Response<Body>, Error> {
|
||||
let content_sha256 =
|
||||
content_sha256.ok_or_bad_request("Request content hash not signed, aborting.")?;
|
||||
|
||||
let body = hyper::body::to_bytes(req.into_body()).await?;
|
||||
|
||||
if let Some(content_sha256) = content_sha256 {
|
||||
verify_signed_content(content_sha256, &body[..])?;
|
||||
}
|
||||
|
||||
let body_xml = roxmltree::Document::parse(std::str::from_utf8(&body)?)?;
|
||||
let body_list_of_parts = parse_complete_multpart_upload_body(&body_xml)
|
||||
|
|
Loading…
Reference in a new issue