diff options
| author | David Wragg <david@rabbitmq.com> | 2011-02-01 13:09:35 +0000 |
|---|---|---|
| committer | David Wragg <david@rabbitmq.com> | 2011-02-01 13:09:35 +0000 |
| commit | 74d4121e6af14658a21746d66cc5d5c2f2d17746 (patch) | |
| tree | 5acb92552c000c4cc75c509a7f4602b1ed179033 /src | |
| parent | 594d856c2c403e69ec921e769dfd3f3c01e8da8f (diff) | |
| parent | 55f5d3dc379f865aed2b579df754cd4b2b07af55 (diff) | |
| download | rabbitmq-server-git-74d4121e6af14658a21746d66cc5d5c2f2d17746.tar.gz | |
Merge default into bug23568
Diffstat (limited to 'src')
| -rw-r--r-- | src/rabbit.erl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/rabbit.erl b/src/rabbit.erl index c6661d390a..5e1f077643 100644 --- a/src/rabbit.erl +++ b/src/rabbit.erl @@ -29,26 +29,32 @@ %% Boot steps. -export([maybe_insert_default_data/0]). +-rabbit_boot_step({pre_boot, [{description, "rabbit boot start"}]}). + -rabbit_boot_step({codec_correctness_check, [{description, "codec correctness check"}, {mfa, {rabbit_binary_generator, check_empty_content_body_frame_size, []}}, + {requires, pre_boot}, {enables, external_infrastructure}]}). -rabbit_boot_step({database, [{mfa, {rabbit_mnesia, init, []}}, + {requires, pre_boot}, {enables, external_infrastructure}]}). -rabbit_boot_step({file_handle_cache, [{description, "file handle cache server"}, {mfa, {rabbit_sup, start_restartable_child, [file_handle_cache]}}, + {requires, pre_boot}, {enables, worker_pool}]}). -rabbit_boot_step({worker_pool, [{description, "worker pool"}, {mfa, {rabbit_sup, start_child, [worker_pool_sup]}}, + {requires, pre_boot}, {enables, external_infrastructure}]}). -rabbit_boot_step({external_infrastructure, |
