diff options
| author | Michael Klishin <michael@clojurewerkz.org> | 2019-01-20 06:19:49 +0300 |
|---|---|---|
| committer | Michael Klishin <michael@clojurewerkz.org> | 2019-01-20 06:19:49 +0300 |
| commit | c5ae45e2c8f26393c061ebc647c7b7cb56d0917e (patch) | |
| tree | bb0a3d7fbc70cbc677ec5cbb14596628139c48ed /src | |
| parent | 365cfd054e543efe399eae8a319fd92ec30ae35b (diff) | |
| download | rabbitmq-server-git-c5ae45e2c8f26393c061ebc647c7b7cb56d0917e.tar.gz | |
Export rabbit:is_booting/1
It joins the club of is_booted/1 and is_running/{0, 1}.
This allows for a CLI command that checks if the node is still
botting.
References rabbitmq/rabbitmq-cli#292.
Diffstat (limited to 'src')
| -rw-r--r-- | src/rabbit.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit.erl b/src/rabbit.erl index c8c6968ab0..c9266c3ea1 100644 --- a/src/rabbit.erl +++ b/src/rabbit.erl @@ -31,7 +31,7 @@ -export([start/2, stop/1, prep_stop/1]). -export([start_apps/1, start_apps/2, stop_apps/1]). -export([log_locations/0, config_files/0, decrypt_config/2]). %% for testing and mgmt-agent --export([is_booted/1]). +-export([is_booted/1, is_booting/1]). -ifdef(TEST). |
