summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJean-Sébastien Pédron <jean-sebastien@rabbitmq.com>2020-02-28 10:16:52 +0100
committerGitHub <noreply@github.com>2020-02-28 10:16:52 +0100
commiteb061384fe508a8acaa39b75d32afd7c5a8ecee2 (patch)
tree9116bbfb52e3fbfdb6cf6787130514acdda3059f /src
parent8ce1f32351a1536f687eb7e797be6e53b283c730 (diff)
parentc1e891c5ee343910a9b4537fd5930b0bb34d20a2 (diff)
downloadrabbitmq-server-git-eb061384fe508a8acaa39b75d32afd7c5a8ecee2.tar.gz
Merge pull request #2258 from rabbitmq/load-several-config-files
Load additional Cuttlefish configuration files
Diffstat (limited to 'src')
-rw-r--r--src/rabbit.erl9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/rabbit.erl b/src/rabbit.erl
index 65a2e4707e..312e30d4ae 100644
--- a/src/rabbit.erl
+++ b/src/rabbit.erl
@@ -349,21 +349,18 @@ run_prelaunch_second_phase() ->
%% 2. Feature flags registry.
ok = rabbit_prelaunch_feature_flags:setup(Context),
- %% 3. Configuration check + loading.
- ok = rabbit_prelaunch_conf:setup(Context),
-
- %% 4. Logging.
+ %% 3. Logging.
ok = rabbit_prelaunch_logging:setup(Context),
case IsInitialPass of
true ->
- %% 5. HiPE compilation.
+ %% 4. HiPE compilation.
ok = rabbit_prelaunch_hipe:setup(Context);
false ->
ok
end,
- %% 6. Clustering.
+ %% 5. Clustering.
ok = rabbit_prelaunch_cluster:setup(Context),
%% Start Mnesia now that everything is ready.