1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-08-30 16:40:21 +02:00

include source for dispatch body errors

This commit is contained in:
Rob Ede
2021-12-17 01:29:41 +00:00
parent a2467718ac
commit 5359fa56c2
4 changed files with 31 additions and 32 deletions

View File

@@ -458,7 +458,7 @@ where
}
Poll::Ready(Some(Err(err))) => {
return Err(DispatchError::Service(err.into()))
return Err(DispatchError::Body(err.into()))
}
Poll::Pending => return Ok(PollResponse::DoNothing),