Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cant print debug stack using middleware Recover() and Timeout() #2634

Open
gitouyoung opened this issue May 23, 2024 · 0 comments
Open

cant print debug stack using middleware Recover() and Timeout() #2634

gitouyoung opened this issue May 23, 2024 · 0 comments

Comments

@gitouyoung
Copy link

gitouyoung commented May 23, 2024

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 cannot show where panic occurs, the stack output always be like :
image

If I remove timeout middleware, log shows where panic occurs. the stack output is:
image

I wonder how can Recover() print panic stack correctly while using both Recover() and Timeout()

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant