diff options
Diffstat (limited to 'src/cowboy_sup.erl')
-rw-r--r-- | src/cowboy_sup.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cowboy_sup.erl b/src/cowboy_sup.erl index 9c52486..34591bc 100644 --- a/src/cowboy_sup.erl +++ b/src/cowboy_sup.erl @@ -32,5 +32,5 @@ start_link() -> -spec init([]) -> {ok, {{one_for_one, 10, 10}, [{_, _, _, _, _, _}, ...]}}. init([]) -> Procs = [{cowboy_clock, {cowboy_clock, start_link, []}, - permanent, 5000, worker, dynamic}], + permanent, 5000, worker, [cowboy_clock]}], {ok, {{one_for_one, 10, 10}, Procs}}. |