gitouyoung
Results
2
issues of
gitouyoung
**Type of issue:** (check with "[x]") > - [ ] New feature request > - [ ] Bug > - [x] Support request > - [ ] Documentation **Current behaviour:**...
This is my middlewares: ``` middleware.Recover(), middleware.TimeoutWithConfig(middleware.TimeoutConfig{ Skipper: func(c echo.Context) bool { return strings.HasPrefix(c.Request().RequestURI, "/debug/pprof/") }, ErrorMessage: "timeout", Timeout: 10 * time.Second, }), ``` after I add timeout middleware, log...