summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Watson <tim@rabbitmq.com>2014-02-17 16:06:16 +0000
committerTim Watson <tim@rabbitmq.com>2014-02-17 16:06:16 +0000
commite831fe91845f4649925a8dbafda2b6ea50c728b1 (patch)
tree017aebc8951bc86d4e1edbc2a9968e81552fc505
parent753f9ff2e5f395618ec9295cd6056f58d129429b (diff)
downloadrabbitmq-server-git-e831fe91845f4649925a8dbafda2b6ea50c728b1.tar.gz
Avoid verbosity
-rw-r--r--src/rabbit_boot.erl15
1 files changed, 6 insertions, 9 deletions
diff --git a/src/rabbit_boot.erl b/src/rabbit_boot.erl
index 8561e7a5a2..1f8fcf1d19 100644
--- a/src/rabbit_boot.erl
+++ b/src/rabbit_boot.erl
@@ -40,14 +40,13 @@
%% When the broker is starting, we must run all the boot steps within the
%% rabbit:start/2 application callback, after rabbit_sup has started and
%% before any plugin applications begin to start. To achieve this, we process
-%% the boot steps from all loaded applications and run them in dependent
-%% order.
+%% the boot steps from all loaded applications.
%%
-%% When the broker is already running, we must run all the boot steps for
-%% each application/plugin we're starting, plus any other (dependent) steps
-%% that have not been run. To achieve this, we process the boot steps from
-%% all loaded applications, but skip those that have already been run (i.e.,
-%% steps that have been run once whilst or since the broker started).
+%% If the broker is already running however, we must run all boot steps for
+%% each application/plugin we're starting, plus any other (dependent) steps.
+%% To achieve this, we process the boot steps from all loaded applications,
+%% but skip those that have already been run (i.e., steps that have been run
+%% once whilst, or even since the broker started).
%%
%% Tracking which boot steps have already been run is done via an ets table.
%% Because we frequently find ourselves needing to query this table without
@@ -58,8 +57,6 @@
%% starting, the file is also removed and replaced (since we do not want to
%% track boot steps from a previous incarnation of the node).
%%
-%% Cleanup steps...
-%%
%%---------------------------------------------------------------------------
%% Public API