mirror of
https://github.com/actix/actix-extras.git
synced 2025-06-26 10:27:42 +02:00
relax body bounds (#223)
This commit is contained in:
@ -301,7 +301,6 @@ where
|
||||
S::Future: 'static,
|
||||
S::Error: 'static,
|
||||
B: MessageBody + 'static,
|
||||
B::Error: Into<Error>,
|
||||
{
|
||||
type Response = ServiceResponse<EitherBody<B>>;
|
||||
type Error = S::Error;
|
||||
@ -329,7 +328,6 @@ where
|
||||
S::Future: 'static,
|
||||
S::Error: 'static,
|
||||
B: MessageBody + 'static,
|
||||
B::Error: Into<Error>,
|
||||
{
|
||||
type Response = ServiceResponse<EitherBody<B>>;
|
||||
type Error = S::Error;
|
||||
|
Reference in New Issue
Block a user