Skip to content

Commit 2a615e9

Browse files
authored
fix context canceled recv error handling (#390)
Signed-off-by: Kuromesi <[email protected]>
1 parent 432f5ed commit 2a615e9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pkg/epp/handlers/server.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ package handlers
1818

1919
import (
2020
"context"
21-
"errors"
2221
"io"
2322
"time"
2423

@@ -90,7 +89,7 @@ func (s *Server) Process(srv extProcPb.ExternalProcessor_ProcessServer) error {
9089
}
9190

9291
req, recvErr := srv.Recv()
93-
if recvErr == io.EOF || errors.Is(recvErr, context.Canceled) {
92+
if recvErr == io.EOF || status.Code(recvErr) == codes.Canceled {
9493
return nil
9594
}
9695
if recvErr != nil {

0 commit comments

Comments
 (0)