Skip to content

Commit

Permalink
chore(core): remove redundance bounds on Limits middleware
Browse files Browse the repository at this point in the history
  • Loading branch information
fundon committed Jan 1, 2024
1 parent 265ae39 commit f0c2de0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion viz-core/src/middleware/limits.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ pub struct LimitsMiddleware<H> {
impl<H, O> Handler<Request> for LimitsMiddleware<H>
where
H: Handler<Request, Output = Result<O>>,
O: IntoResponse + 'static,
O: IntoResponse,
{
type Output = Result<Response>;

Expand Down

0 comments on commit f0c2de0

Please sign in to comment.