mirror of
https://github.com/deuxfleurs-org/garage.git
synced 2026-08-11 06:46:53 +00:00
Well they still have to exit when we're exiting though
This commit is contained in:
+5
-9
@@ -47,16 +47,13 @@ where
|
||||
let begin_time = Instant::now();
|
||||
let whole_body = hyper::body::to_bytes(req.into_body()).await?;
|
||||
let msg = rmp_serde::decode::from_read::<_, M>(whole_body.into_buf())?;
|
||||
let req_str = debug_serialize(&msg);
|
||||
match handler(msg, sockaddr).await {
|
||||
Ok(resp) => {
|
||||
let resp_bytes = rmp_to_vec_all_named::<Result<M, String>>(&Ok(resp))?;
|
||||
trace!(
|
||||
"]RPC:{},ok ({} ms), request: {}",
|
||||
name,
|
||||
(Instant::now() - begin_time).as_millis(),
|
||||
req_str,
|
||||
);
|
||||
let rpc_duration = (Instant::now() - begin_time).as_millis();
|
||||
if rpc_duration > 100 {
|
||||
debug!("RPC {} ok, took long: {} ms", name, rpc_duration,);
|
||||
}
|
||||
Ok(Response::new(Body::from(resp_bytes)))
|
||||
}
|
||||
Err(e) => {
|
||||
@@ -65,11 +62,10 @@ where
|
||||
let mut err_response = Response::new(Body::from(rep_bytes));
|
||||
*err_response.status_mut() = e.http_status_code();
|
||||
warn!(
|
||||
"RPC error ({}): {} ({} ms), request: {}",
|
||||
"RPC error ({}): {} ({} ms)",
|
||||
name,
|
||||
e,
|
||||
(Instant::now() - begin_time).as_millis(),
|
||||
req_str,
|
||||
);
|
||||
Ok(err_response)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user