You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running tests with the -race flag, gosec detects data races in streamImpl methods LastByteSent() and FirstByteSent(). The race occurs due to concurrent reads (in sender's multiCB callback) and writes (in StreamsPool.Acquire()) on the shared fields of streamImpl.
Read at 0x00c0006166e0 by goroutine 27:
...streamImpl.LastByteSent()
...sender.multiCB.Call() at sender.go:308
Previous write at 0x00c0006166e0 by goroutine 22:
...StreamsPool.Acquire() at pool.go:51
and similarly for FirstByteSent().
The text was updated successfully, but these errors were encountered:
Description:
When running tests with the -race flag, gosec detects data races in streamImpl methods LastByteSent() and FirstByteSent(). The race occurs due to concurrent reads (in sender's multiCB callback) and writes (in StreamsPool.Acquire()) on the shared fields of streamImpl.
and similarly for FirstByteSent().
The text was updated successfully, but these errors were encountered: