diff options
Diffstat (limited to 'p11p-daemon')
-rw-r--r-- | p11p-daemon/src/p11p_sup.erl | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/p11p-daemon/src/p11p_sup.erl b/p11p-daemon/src/p11p_sup.erl index 9ea5ae6..ee19d2b 100644 --- a/p11p-daemon/src/p11p_sup.erl +++ b/p11p-daemon/src/p11p_sup.erl @@ -19,7 +19,8 @@ start_link() -> %% Child :: {Id,StartFunc,Restart,Shutdown,Type,Modules} init([]) -> - {ok, {{one_for_all, 10, 10}, [ - ?CHILD(p11p_config, worker), - ?CHILD(p11p_server_sup, supervisor) - ]}}. + {ok, {{one_for_all, 1, 5}, + [ + ?CHILD(p11p_config, worker), + ?CHILD(p11p_server_sup, supervisor) + ]}}. |