Skip to content

Commit 67fdbe5

Browse files
fix(vpn): use unbuffered channel in speaker (#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)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy