diff options
author | Wolfy-J <[email protected]> | 2019-05-02 17:19:12 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2019-05-02 17:19:12 +0300 |
commit | a482d49122d92dd1cd82881ed221c55e5210e536 (patch) | |
tree | b0a7de9e1866aca46a726694231d69fc0c012462 /static_pool.go | |
parent | 7bd5da5327e0d6f602627006d55cf803b8c4a4c7 (diff) |
fixing tests
Diffstat (limited to 'static_pool.go')
-rw-r--r-- | static_pool.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/static_pool.go b/static_pool.go index 336ae520..69edfd35 100644 --- a/static_pool.go +++ b/static_pool.go @@ -81,8 +81,9 @@ func NewPool(cmd func() *exec.Cmd, factory Factory, cfg Config) (*StaticPool, er return p, nil } -// WatchWorkers enables worker watching. -func (p *StaticPool) WatchWorkers(w Watcher) { +// Watch enables worker watching (to destroy expired workers or workers which experience +// memory leaks). +func (p *StaticPool) Watch(w Watcher) { p.mul.Lock() defer p.mul.Unlock() |