summaryrefslogtreecommitdiff
path: root/src/rabbit.erl
diff options
context:
space:
mode:
authorTim Watson <watson.timothy@gmail.com>2013-11-21 21:59:55 +0000
committerTim Watson <watson.timothy@gmail.com>2013-11-21 21:59:55 +0000
commitac2bac239d424ab71c565d8137607e5cc1768d6f (patch)
tree6bc385538ff776abaf91a7900609c2af069701af /src/rabbit.erl
parent33cbee5b3799ef2b301cf513f6fef1103d26bc32 (diff)
downloadrabbitmq-server-git-ac2bac239d424ab71c565d8137607e5cc1768d6f.tar.gz
Re-work boot step handling
We need to support interleaving plugin boot steps with rabbit’s own (internal) ones during the boot/start sequence, and also running them independently during runtime activation. This commit also drops the use of an ets table to track which cleanup steps we’ve run, and simplifies the boot step execution procedures.
Diffstat (limited to 'src/rabbit.erl')
-rw-r--r--src/rabbit.erl1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rabbit.erl b/src/rabbit.erl
index 44cd275d3b..374fccc3a2 100644
--- a/src/rabbit.erl
+++ b/src/rabbit.erl
@@ -411,6 +411,7 @@ start(normal, []) ->
true = register(rabbit, self()),
print_banner(),
log_banner(),
+ rabbit_boot:run_boot_steps(),
{ok, SupPid};
Error ->
Error