Browse Source

Fix missing unlock in uniquequeue (#9790)

for-closed-social
zeripath 4 years ago
committed by Lauris BH
parent
commit
e7923c4bc0
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      modules/sync/unique_queue.go

+ 1
- 0
modules/sync/unique_queue.go View File

@ -82,6 +82,7 @@ func (q *UniqueQueue) AddFunc(id interface{}, fn func()) {
idStr := com.ToStr(id) idStr := com.ToStr(id)
q.table.lock.Lock() q.table.lock.Lock()
if _, ok := q.table.pool[idStr]; ok { if _, ok := q.table.pool[idStr]; ok {
q.table.lock.Unlock()
return return
} }
q.table.pool[idStr] = struct{}{} q.table.pool[idStr] = struct{}{}

Loading…
Cancel
Save