summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/rabbit_channel_sup.erl2
-rw-r--r--src/rabbit_connection_sup.erl2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/rabbit_channel_sup.erl b/src/rabbit_channel_sup.erl
index e4dcbae1ea..9e68b49754 100644
--- a/src/rabbit_channel_sup.erl
+++ b/src/rabbit_channel_sup.erl
@@ -80,4 +80,4 @@ start_link(Protocol, Sock, Channel, FrameMax, ReaderPid, Username, VHost,
%%----------------------------------------------------------------------------
init([]) ->
- {ok, {{one_for_all, 10, 10}, []}}.
+ {ok, {{one_for_all, 0, 1}, []}}.
diff --git a/src/rabbit_connection_sup.erl b/src/rabbit_connection_sup.erl
index 5993044c5e..aee8d9879e 100644
--- a/src/rabbit_connection_sup.erl
+++ b/src/rabbit_connection_sup.erl
@@ -59,7 +59,7 @@ start_link() ->
{ok, SupPid}.
init([]) ->
- {ok, {{one_for_all, 10, 10}, []}}.
+ {ok, {{one_for_all, 0, 1}, []}}.
reader(Pid) ->
hd(supervisor2:find_child(Pid, reader)).