Fix HTTP return code for DeleteObject (fix #98)
This commit is contained in:
parent
0f9d9df83b
commit
f6060b92aa
1 changed files with 2 additions and 1 deletions
|
@ -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())
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue