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
If a deadline is set, r.cond.Broadcast() is called without obtaining a lock and that opens up the posibility of a race where the broadcast could be called first, and r.cond.Wait() would miss it, potentially leading to a blocked goroutine.
If a deadline is set,
r.cond.Broadcast()
is called without obtaining a lock and that opens up the posibility of a race where the broadcast could be called first, andr.cond.Wait()
would miss it, potentially leading to a blocked goroutine.remotedialer/readbuffer.go
Line 115 in eac401e
This is a follow up from the following PR review discussion: #68 (comment). So far, it was not observed in Rancher user installations
The text was updated successfully, but these errors were encountered: