mirror of https://github.com/panjf2000/ants.git
update
This commit is contained in:
parent
8ff88950b8
commit
5c30d8f881
7
pool.go
7
pool.go
|
@ -97,13 +97,14 @@ func (p *Pool) newWorker() *Worker {
|
|||
func (p *Pool) getWorker() *Worker {
|
||||
var worker *Worker
|
||||
if p.reachLimit() {
|
||||
worker = <-p.workers
|
||||
} else {
|
||||
select {
|
||||
case worker = <-p.workers:
|
||||
return worker
|
||||
case worker = <-p.workers:
|
||||
return worker
|
||||
default:
|
||||
worker = p.newWorker()
|
||||
}
|
||||
}
|
||||
worker = <-p.workers
|
||||
return worker
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue