Skip to content

Commit 67fdbe5

Browse files
fix(vpn): use unbuffered channel in speaker (coder#15863)
Closes coder/internal#253.
1 parent 50bb13c commit 67fdbe5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vpn/speaker.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ func (s *speaker[_, R, _]) newRPC() (uint64, chan R) {
225225
defer s.mu.Unlock()
226226
msgID := s.nextMsgID
227227
s.nextMsgID++
228-
c := make(chan R, 1)
228+
c := make(chan R)
229229
s.responseChans[msgID] = c
230230
return msgID, c
231231
}

0 commit comments

Comments
 (0)