We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4c9cd6 commit 0f3beaeCopy full SHA for 0f3beae
internal/servers/plugin/v3/plugin.go
@@ -456,6 +456,10 @@ func (s *Server) Transform(stream pb.Plugin_TransformServer) error {
456
}
457
if err != nil {
458
close(recvRecords)
459
+ if errors.Is(err, context.Canceled) {
460
+ // Ignore context cancellation errors
461
+ return nil
462
+ }
463
return status.Errorf(codes.Internal, "Error receiving request: %v", err)
464
465
record, err := pb.NewRecordFromBytes(req.Record)
0 commit comments