diff options
author | Magnus Ahltorp <map@kth.se> | 2017-03-02 00:27:59 +0100 |
---|---|---|
committer | Magnus Ahltorp <map@kth.se> | 2017-03-08 23:23:13 +0100 |
commit | 12e08090358383c5678417ae8929fca1f03ca8bc (patch) | |
tree | 160e002958b6523d8a0e9f71bccad5a77c018ce2 /src/plop_sup.erl | |
parent | 04f5784a9af4cf49dd8a08ff4c64035272cfd370 (diff) |
Statusserver
Diffstat (limited to 'src/plop_sup.erl')
-rw-r--r-- | src/plop_sup.erl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plop_sup.erl b/src/plop_sup.erl index 27f7680..15f3fe8 100644 --- a/src/plop_sup.erl +++ b/src/plop_sup.erl @@ -50,6 +50,7 @@ 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(the_statusreport, {statusreport, start_link, []}), permanent_worker(plopcontrol, {plopcontrol, start_link, []})], OptionalChildren = lists:map(fun (ServiceName) -> case ServiceName of |