Fix HTTP return code for DeleteObject (fix #98)

This commit is contained in:
Alex 2021-10-11 14:24:49 +02:00
parent 0f9d9df83b
commit f6060b92aa
No known key found for this signature in database
GPG Key ID: EDABF9711E244EB1
1 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,6 @@
use std::sync::Arc;
use hyper::{Body, Request, Response};
use hyper::{Body, Request, Response, StatusCode};
use garage_util::data::*;
use garage_util::time::*;
@ -68,6 +68,7 @@ pub async fn handle_delete(
Ok(Response::builder()
.header("x-amz-version-id", hex::encode(delete_marker_version))
.status(StatusCode::NO_CONTENT)
.body(Body::from(vec![]))
.unwrap())
}