mirror of
https://github.com/caddyserver/caddy.git
synced 2024-12-16 21:56:40 -05:00
requestbody: Type-based error handling for MaxBytesError
(#6701)
* fix: handle "request body too large" error using type assertion * fix: address overlooked nil check for MaxBytesError * fix: replace type assertion with errors.As() for MaxBytesError
This commit is contained in:
parent
eddbccd298
commit
8c3dd3de70
1 changed files with 3 additions and 1 deletions
|
@ -15,6 +15,7 @@
|
|||
package requestbody
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"io"
|
||||
"net/http"
|
||||
"time"
|
||||
|
@ -94,7 +95,8 @@ type errorWrapper struct {
|
|||
|
||||
func (ew errorWrapper) Read(p []byte) (n int, err error) {
|
||||
n, err = ew.ReadCloser.Read(p)
|
||||
if err != nil && err.Error() == "http: request body too large" {
|
||||
var mbe *http.MaxBytesError
|
||||
if errors.As(err, &mbe) {
|
||||
err = caddyhttp.Error(http.StatusRequestEntityTooLarge, err)
|
||||
}
|
||||
return
|
||||
|
|
Loading…
Reference in a new issue