Skip to content

Commit

Permalink
server: don't choke if connection handlers crash
Browse files Browse the repository at this point in the history
  • Loading branch information
jkloetzke committed Feb 19, 2012
1 parent e607f7e commit 4dfc9e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/apps/peerdrive/src/peerdrive_servlet_sup.erl
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ start_link(Id, Module, ServletOpt) ->

init({Module, ServletOpt}) ->
{ok, {
{simple_one_for_one, 1, 10},
{simple_one_for_one, 1000, 1},
[{
servlet,
{peerdrive_gen_servlet, start_link, [Module, ServletOpt]},
transient,
temporary,
brutal_kill,
worker,
[]
Expand Down

0 comments on commit 4dfc9e3

Please sign in to comment.