diff options
Diffstat (limited to 'vendor/github.com/labstack/echo/middleware/body_limit.go')
-rw-r--r-- | vendor/github.com/labstack/echo/middleware/body_limit.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/github.com/labstack/echo/middleware/body_limit.go b/vendor/github.com/labstack/echo/middleware/body_limit.go index b964cd29..8d8281f4 100644 --- a/vendor/github.com/labstack/echo/middleware/body_limit.go +++ b/vendor/github.com/labstack/echo/middleware/body_limit.go @@ -17,7 +17,7 @@ type ( // Maximum allowed size for a request body, it can be specified // as `4x` or `4xB`, where x is one of the multiple from K, M, G, T or P. - Limit string `json:"limit"` + Limit string `yaml:"limit"` limit int64 } |