diff options
Diffstat (limited to 'src/worker_pool_sup.erl')
-rw-r--r-- | src/worker_pool_sup.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/worker_pool_sup.erl b/src/worker_pool_sup.erl index 16c359a0..89d2ed46 100644 --- a/src/worker_pool_sup.erl +++ b/src/worker_pool_sup.erl @@ -49,5 +49,5 @@ init([WCount]) -> {ok, {{one_for_one, 10, 10}, [{worker_pool, {worker_pool, start_link, []}, transient, 16#ffffffff, worker, [worker_pool]} | - [{N, {worker_pool_worker, start_link, [N]}, transient, 16#ffffffff, + [{N, {worker_pool_worker, start_link, []}, transient, 16#ffffffff, worker, [worker_pool_worker]} || N <- lists:seq(1, WCount)]]}}. |