summaryrefslogtreecommitdiff
path: root/src/test_sup.erl
diff options
context:
space:
mode:
authorEmile Joubert <emile@rabbitmq.com>2011-03-31 17:38:29 +0100
committerEmile Joubert <emile@rabbitmq.com>2011-03-31 17:38:29 +0100
commit8a749d93ff409f665ff610ca62482705f672db13 (patch)
tree89c80e953be2fd45e2716c9a0821518c2675e88f /src/test_sup.erl
parent0152526718c71f31b010fb58064aefa969e03143 (diff)
downloadrabbitmq-server-8a749d93ff409f665ff610ca62482705f672db13.tar.gz
Slimmer gatherer termination
Diffstat (limited to 'src/test_sup.erl')
-rw-r--r--src/test_sup.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test_sup.erl b/src/test_sup.erl
index b4df1fd0..5fc0eac0 100644
--- a/src/test_sup.erl
+++ b/src/test_sup.erl
@@ -46,7 +46,7 @@ with_sup(RestartStrategy, Fun) ->
{ok, SupPid} = supervisor2:start_link(?MODULE, [RestartStrategy]),
Res = Fun(SupPid),
exit(SupPid, shutdown),
- rabbit_misc:unlink_and_capture_exit(SupPid),
+ unlink(SupPid),
Res.
init([RestartStrategy]) ->