From b0ed3508ba02b8d6b67654c58fbe9c7a95f9a836 Mon Sep 17 00:00:00 2001 From: Yang Yang Date: Sun, 25 Jul 2021 23:17:57 +0800 Subject: [PATCH] Update timeout.md Synchronize with v4.4.0. --- website/content/middleware/timeout.md | 21 ++++++++------------- 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/website/content/middleware/timeout.md b/website/content/middleware/timeout.md index 1c4a31ec..04e4ae45 100644 --- a/website/content/middleware/timeout.md +++ b/website/content/middleware/timeout.md @@ -20,7 +20,7 @@ Timeout middleware is used to timeout at a long running operation within a prede e := echo.New() e.Use(middleware.TimeoutWithConfig(middleware.TimeoutConfig{ Skipper: Skipper, - ErrorHandler: func(err error, e echo.Context) error { + OnTimeoutRouteErrorHandler: func(err error, e echo.Context) error { // you can handle your error here, the returning error will be // passed down the middleware chain return err @@ -36,28 +36,23 @@ e.Use(middleware.TimeoutWithConfig(middleware.TimeoutConfig{ TimeoutConfig struct { // Skipper defines a function to skip middleware. Skipper Skipper - // ErrorHandler defines a function which is executed for a timeout - // It can be used to define a custom timeout error - ErrorHandler TimeoutErrorHandlerWithContext + // ErrorMessage is written to response on timeout in addition to http.StatusServiceUnavailable (503) status code + // It can be used to define a custom timeout error message + ErrorMessage string + // OnTimeoutRouteErrorHandler is an error handler that is executed for error that was returned + // from wrapped route after OnTimeoutRouteErrorHandler func(err error, c echo.Context) + OnTimeoutRouteErrorHandler func(err error, c echo.Context) // Timeout configures a timeout for the middleware, defaults to 0 for no timeout Timeout time.Duration } ``` -*TimeoutErrorHandlerWithContext* is responsible for handling the errors when a timeout happens -```go -// TimeoutErrorHandlerWithContext is an error handler that is used -// with the timeout middleware so we can handle the error -// as we see fit -TimeoutErrorHandlerWithContext func(error, echo.Context) error -``` - *Default Configuration* ```go DefaultTimeoutConfig = TimeoutConfig{ Skipper: DefaultSkipper, Timeout: 0, - ErrorHandler: nil, + ErrorMessage: "", } ```