Skip to content

Commit

Permalink
Merge pull request #143 from dmcgowan/backport-1.1-error-unwrap
Browse files Browse the repository at this point in the history
[release/1.1] Unwrap io errors in server connection receive error handling
  • Loading branch information
dmcgowan committed May 17, 2023
2 parents e1f0dab + d5f7eed commit 20c493e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.go
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ func (c *serverConn) run(sctx context.Context) {
// branch. Basically, it means that we are no longer receiving
// requests due to a terminal error.
recvErr = nil // connection is now "closing"
if err == io.EOF || err == io.ErrUnexpectedEOF || errors.Is(err, syscall.ECONNRESET) {
if errors.Is(err, io.EOF) || errors.Is(err, io.ErrUnexpectedEOF) || errors.Is(err, syscall.ECONNRESET) {
// The client went away and we should stop processing
// requests, so that the client connection is closed
return
Expand Down

0 comments on commit 20c493e

Please sign in to comment.