mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
Fixed a missing block bug
Description: w.mu is locked at line 385 and unlocked at line 396. Among 5 return statements in this function, 4 are below line 396 but there is 1 return at line 387. Fix: Add w.mu.Unlock() before that return at line 387.
This commit is contained in:
parent
948e276ca7
commit
8194aa3f03
@ -384,6 +384,7 @@ func (w *watcher) RequestProgress(ctx context.Context) (err error) {
|
||||
|
||||
w.mu.Lock()
|
||||
if w.streams == nil {
|
||||
w.mu.Unlock()
|
||||
return fmt.Errorf("no stream found for context")
|
||||
}
|
||||
wgs := w.streams[ctxKey]
|
||||
|
Loading…
x
Reference in New Issue
Block a user