diff options
author | Linus Nordberg <linus@nordu.net> | 2017-03-15 17:17:58 +0100 |
---|---|---|
committer | Linus Nordberg <linus@nordu.net> | 2017-03-15 17:17:58 +0100 |
commit | 598d6ae6d00644c7f6e318cf5a4928ee5a8eb9ca (patch) | |
tree | 7653518afa13e7ccc1a3925603d36d85570cb88c /src/plop_sup.erl | |
parent | 7e41c7c7630c4a96567029e6b4d7688a7df6ccee (diff) | |
parent | 8bb572816040a8ecda50be9687cd1ddc76436f65 (diff) |
Merge branch 'map-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 |