summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortim <devnull@localhost>2012-05-08 18:07:58 +0100
committertim <devnull@localhost>2012-05-08 18:07:58 +0100
commit48f1cb86ae7e1331cbe71d443bf7012163918a23 (patch)
tree2802ffe71fe4d9ba3c939076c2f1c10253f4a548
parent5bb861fc86301fcf371e77831e15f79da44ab3d3 (diff)
downloadrabbitmq-server-git-48f1cb86ae7e1331cbe71d443bf7012163918a23.tar.gz
do not kill the child explicitly
-rw-r--r--src/mirrored_supervisor_tests.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mirrored_supervisor_tests.erl b/src/mirrored_supervisor_tests.erl
index 3608d68381..1fe8cdf04f 100644
--- a/src/mirrored_supervisor_tests.erl
+++ b/src/mirrored_supervisor_tests.erl
@@ -295,7 +295,7 @@ kill_registered(Pid, Child) ->
{registered_name, Name} = erlang:process_info(Child, registered_name),
exit(Pid, kill),
kill_wait(Pid),
- exit(Child, kill),
+ %% exit(Child, kill),
receive
{'DOWN', _Ref, process, Child, _Reason} ->
undefined = whereis(Name),