diff options
Diffstat (limited to 'static_pool.go')
-rw-r--r-- | static_pool.go | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/static_pool.go b/static_pool.go index d81ef7e2..1409fc3f 100644 --- a/static_pool.go +++ b/static_pool.go @@ -122,14 +122,6 @@ func (p *StaticPool) Remove(w *Worker, err error) { } p.remove.Store(w, err) - - // cleanup workers which were scheduled for deletion after stop has been started - p.remove.Range(func(key, value interface{}) bool { - if key.(*Worker).State().Value() == StateStopped || key.(*Worker).State().Value() == StateErrored { - p.remove.Delete(key) - } - return true - }) } // Exec one task with given payload and context, returns result or error. |