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
commit2ba7cb99278ddd8b5716dc3568953f27c2795aa7 (patch)
tree2802ffe71fe4d9ba3c939076c2f1c10253f4a548
parent6f90df63a3d13e4ea00931c3029d852b47d88a28 (diff)
downloadrabbitmq-server-2ba7cb99278ddd8b5716dc3568953f27c2795aa7.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 3608d683..1fe8cdf0 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),