Closed flambard closed 5 years ago
The previous fix for issue #167 only seems to work for pools of size 1. del_slot/2 still removed a worker slot if its name was located at the end of the list of workers.
del_slot/2
With this change, the worker pool is not lopped off when auto_size =:= false.
auto_size =:= false
Also included a unit test that provokes this bug.
Ah, excellent! Thanks.
The previous fix for issue #167 only seems to work for pools of size 1.
del_slot/2
still removed a worker slot if its name was located at the end of the list of workers.With this change, the worker pool is not lopped off when
auto_size =:= false
.Also included a unit test that provokes this bug.