diff options
| author | Simon MacMullen <simon@rabbitmq.com> | 2014-03-19 15:56:48 +0000 |
|---|---|---|
| committer | Simon MacMullen <simon@rabbitmq.com> | 2014-03-19 15:56:48 +0000 |
| commit | 2c6069a2380191a18af5bc77dd26492766c6ea7f (patch) | |
| tree | ef50ae84c56473f3f8184e1234c959fe8a8a0321 | |
| parent | 9df6da77c6199b5f1f9a4bc951fbdd3c2678ef61 (diff) | |
| download | rabbitmq-server-git-2c6069a2380191a18af5bc77dd26492766c6ea7f.tar.gz | |
Oops, complete renaming that function. Also remove some exports that seem no longer used.
| -rw-r--r-- | src/rabbit.erl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/rabbit.erl b/src/rabbit.erl index 07b21e5073..b4943a30f9 100644 --- a/src/rabbit.erl +++ b/src/rabbit.erl @@ -22,7 +22,6 @@ stop_and_halt/0, await_startup/0, status/0, is_running/0, is_running/1, environment/0, rotate_logs/1, force_event_refresh/1, start_fhc/0]). --export([run_boot_steps/0, load_steps/1, run_step/3]). -export([start/2, stop/1]). -export([start_apps/1, stop_apps/1]). -export([log_location/1]). %% for testing @@ -412,7 +411,7 @@ stop_apps(Apps) -> run_cleanup_steps(Apps) -> [run_step(Name, Attributes, cleanup) || - {App, Name, Attributes} <- load_steps(Apps), + {App, Name, Attributes} <- find_steps(Apps), lists:member(App, Apps)], ok. |
