summaryrefslogtreecommitdiff
path: root/src/plop_sup.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/plop_sup.erl')
-rw-r--r--src/plop_sup.erl7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/plop_sup.erl b/src/plop_sup.erl
index 663b3bc..eb65925 100644
--- a/src/plop_sup.erl
+++ b/src/plop_sup.erl
@@ -38,8 +38,13 @@ init(Args) ->
permanent,
10000,
worker, [ht]},
+ {the_signing,
+ {sign, start_link, Args}, % All arguments go to sign.
+ permanent,
+ 10000,
+ worker, [sign]},
{the_plop,
- {plop, start_link, Args}, % All arguments go to plop.
+ {plop, start_link, []},
permanent,
10000, % Shut down within 10s.
worker, [plop]}]}}.