Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 68aedf7

Browse files
committed
fixup! chore: replace todos with issues
1 parent b81448b commit 68aedf7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

peer/channel.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -245,9 +245,9 @@ func (c *Channel) Write(bytes []byte) (n int, err error) {
245245
if c.dc.BufferedAmount()+uint64(len(bytes)) >= maxBufferedAmount {
246246
<-c.sendMore
247247
}
248-
// TODO (@kyle): There's an obvious race-condition here.
249-
// This is an edge-case, as most-frequently data won't
250-
// be pooled so synchronously, but is definitely possible.
248+
// REMARK: There's an obvious race-condition here. This is an edge-case, as
249+
// most-frequently data won't be pooled so synchronously, but is
250+
// definitely possible.
251251
//
252252
// See: https://github.com/pion/sctp/issues/181
253253
time.Sleep(time.Microsecond)

0 commit comments

Comments
 (0)