Add multi error

This commit is contained in:
世界 2022-07-06 20:48:55 +08:00
parent f00396c60e
commit f8356c256f
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
10 changed files with 141 additions and 102 deletions

View file

@ -118,7 +118,7 @@ func HandleConnection(ctx context.Context, conn net.Conn, reader *std_bufio.Read
response, err := httpClient.Do(request)
if err != nil {
return common.AnyError(innerErr, err, responseWith(request, http.StatusBadGateway).Write(conn))
return E.Errors(innerErr, err, responseWith(request, http.StatusBadGateway).Write(conn))
}
removeHopByHopHeaders(response.Header)
@ -133,7 +133,7 @@ func HandleConnection(ctx context.Context, conn net.Conn, reader *std_bufio.Read
err = response.Write(conn)
if err != nil {
return common.AnyError(innerErr, err)
return E.Errors(innerErr, err)
}
if !keepAlive {