Skip to content

Commit 7fb2642

Browse files
committed
fix: use independent pipes in vpn tunnel tests
1 parent c92f480 commit 7fb2642

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)