mirror of
https://github.com/panjf2000/ants.git
synced 2025-12-18 03:01:01 +00:00
fixed the "slice bounds out of range" error
This commit is contained in:
parent
3e6386d097
commit
b21f63142d
6
pool.go
6
pool.go
@ -77,8 +77,10 @@ func (p *Pool) monitorAndClear() {
|
|||||||
w.stop()
|
w.stop()
|
||||||
idleWorkers[i] = nil
|
idleWorkers[i] = nil
|
||||||
}
|
}
|
||||||
n += 1
|
if n > 0 {
|
||||||
p.workers = idleWorkers[n:]
|
n += 1
|
||||||
|
p.workers = idleWorkers[n:]
|
||||||
|
}
|
||||||
p.lock.Unlock()
|
p.lock.Unlock()
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
|
|||||||
@ -78,8 +78,10 @@ func (p *PoolWithFunc) MonitorAndClear() {
|
|||||||
w.stop()
|
w.stop()
|
||||||
idleWorkers[i] = nil
|
idleWorkers[i] = nil
|
||||||
}
|
}
|
||||||
n += 1
|
if n > 0 {
|
||||||
p.workers = idleWorkers[n:]
|
n += 1
|
||||||
|
p.workers = idleWorkers[n:]
|
||||||
|
}
|
||||||
p.lock.Unlock()
|
p.lock.Unlock()
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user