diff options
| author | Michael Klishin <michael@clojurewerkz.org> | 2016-06-09 17:42:04 +0300 |
|---|---|---|
| committer | Michael Klishin <michael@clojurewerkz.org> | 2016-06-09 17:42:04 +0300 |
| commit | 765b9c4aaeae2875c176516e38a6d47ff2affc19 (patch) | |
| tree | 9f65e19bb202fa5fab92630ba058eadcf628e391 | |
| parent | ae501fde2f3e8bea5a4fbd53979027cecc6b9a77 (diff) | |
| download | rabbitmq-server-git-765b9c4aaeae2875c176516e38a6d47ff2affc19.tar.gz | |
Simplify
| -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 0fb8d0176b..3b2c3476c2 100644 --- a/src/worker_pool_sup.erl +++ b/src/worker_pool_sup.erl @@ -52,7 +52,7 @@ init([WCount, PoolName]) -> %% e.g. when a large worker pool used for network connections %% encounters a network failure. This is the case in the LDAP authentication %% backend plugin. - {ok, {{one_for_one, 10 * 1000, 10}, + {ok, {{one_for_one, 1000, 1}, [{worker_pool, {worker_pool, start_link, [PoolName]}, transient, 16#ffffffff, worker, [worker_pool]} | [{N, {worker_pool_worker, start_link, [PoolName]}, transient, |
