Skip to content

Commit 4d20cea

Browse files
committed
fixed: long termination of stdio transport
1 parent c4f3c2b commit 4d20cea

File tree

1 file changed

+9
-18
lines changed

1 file changed

+9
-18
lines changed

pkg/stdio/stdio_transport.go

+9-18
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ func (s *stdioTransport) run(
8383

8484
reader := bufio.NewReader(s.in)
8585
go func() {
86+
defer close(s.stoppedReadingResponses)
8687
out:
8788
for {
8889
select {
@@ -106,38 +107,28 @@ func (s *stdioTransport) run(
106107
}
107108
}
108109
}
109-
close(s.stoppedReadingResponses)
110110
}()
111111

112112
go func() {
113+
defer close(s.stoppedReadingInput)
113114
out:
114115
for {
115-
select {
116-
case <-s.shuttingDown:
117-
break out
118-
default:
119-
input, err := reader.ReadBytes('\n')
120-
if err != nil {
121-
if !errors.Is(err, io.EOF) {
122-
srv.GetLogger().LogEvent(foxyevent.StdioFailedReadingInput{Err: err})
123-
}
124-
break out
116+
input, err := reader.ReadBytes('\n')
117+
if err != nil {
118+
if !errors.Is(err, io.EOF) {
119+
srv.GetLogger().LogEvent(foxyevent.StdioFailedReadingInput{Err: err})
125120
}
126-
srv.Handle(ctx, input)
121+
break out
127122
}
123+
srv.Handle(ctx, input)
128124
}
129-
close(s.stoppedReadingInput)
130125
}()
131126

132127
// wait for either shutting down or stopped reading input
133128
select {
134129
case <-s.shuttingDown:
135-
// if we got shutting down signal,
136-
// we need to wait until we stop reading input,
137-
// which waits for shutdown by itself
138-
<-s.stoppedReadingInput
139130
case <-s.stoppedReadingInput:
140-
// if we stopped reading input, we can now initiate shutdown
131+
// if we stopped reading input, we can now initiate transport shutdown
141132
close(s.shuttingDown)
142133
}
143134

0 commit comments

Comments
 (0)