1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-06-26 18:37:41 +02:00

relax body bounds (#223)

This commit is contained in:
Rob Ede
2022-02-07 02:30:26 +00:00
committed by GitHub
parent 7bb1f8d710
commit ab3615b8d5
8 changed files with 16 additions and 8 deletions

View File

@ -44,7 +44,6 @@ where
S::Future: 'static,
T: IdentityPolicy,
B: MessageBody + 'static,
B::Error: Into<Error>,
{
type Response = ServiceResponse<EitherBody<B>>;
type Error = Error;
@ -80,7 +79,6 @@ where
S::Future: 'static,
T: IdentityPolicy,
B: MessageBody + 'static,
B::Error: Into<Error>,
{
type Response = ServiceResponse<EitherBody<B>>;
type Error = Error;