Skip to content

Commit

Permalink
Increase hackney_sup supervisor restart tolerance
Browse files Browse the repository at this point in the history
Generally found this to be a good idea for top level app supervisors,
especially as part of proper releases.
  • Loading branch information
RJ committed Dec 14, 2013
1 parent 6cb183b commit 13ebaab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hackney_sup.erl
Expand Up @@ -35,4 +35,4 @@ init([]) ->

Manager= ?CHILD(hackney_manager, supervisor),

{ok, { {one_for_one, 10, 1}, [Manager]}}.
{ok, { {one_for_one, 10000, 1}, [Manager]}}.

0 comments on commit 13ebaab

Please sign in to comment.