diff options
author | Magnus Ahltorp <map@kth.se> | 2017-01-27 02:02:39 +0100 |
---|---|---|
committer | Magnus Ahltorp <map@kth.se> | 2017-01-27 02:03:24 +0100 |
commit | d4793aea4dfbf1862bf6ca8eb5cf4279a41b36a4 (patch) | |
tree | 0814d4181a2cc946f3ada50f3e9c2b2b43eba7b8 /src/plop_sup.erl | |
parent | 7b114604595b2e3bb0816ffb01548b02c43cdea5 (diff) |
Separate erlang config file for reloadable parameters
Diffstat (limited to 'src/plop_sup.erl')
-rw-r--r-- | src/plop_sup.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plop_sup.erl b/src/plop_sup.erl index 55d6e9a..6bac20e 100644 --- a/src/plop_sup.erl +++ b/src/plop_sup.erl @@ -48,7 +48,8 @@ init([]) -> ]), Children = [permanent_worker(the_db, {db, start_link, []}, [db]), permanent_worker(the_storagedb, {storagedb, start_link, []}), - permanent_worker(fsync, {fsyncport, start_link, []})], + permanent_worker(fsync, {fsyncport, start_link, []}), + permanent_worker(plopcontrol, {plopcontrol, start_link, []})], OptionalChildren = lists:map(fun (ServiceName) -> case ServiceName of ht -> |