summaryrefslogtreecommitdiff
path: root/ebin
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2010-08-02 16:44:14 +0100
committerSimon MacMullen <simon@rabbitmq.com>2010-08-02 16:44:14 +0100
commitd2e2fa6099077c1f2cf6cb82fdddadca4858bc5a (patch)
treee0cd536f7237cdea6e3e0dfffb47bd42e1ef0202 /ebin
parentb28f428065dcc90a6937782cd69d353aedf0ebe1 (diff)
parent2efd9f8a2a2b167b21fc22b427613564b0bf6807 (diff)
downloadrabbitmq-server-git-d2e2fa6099077c1f2cf6cb82fdddadca4858bc5a.tar.gz
Merging default into bug21875
Diffstat (limited to 'ebin')
-rw-r--r--ebin/rabbit_app.in9
1 files changed, 6 insertions, 3 deletions
diff --git a/ebin/rabbit_app.in b/ebin/rabbit_app.in
index bdf407eb93..2cd28abb01 100644
--- a/ebin/rabbit_app.in
+++ b/ebin/rabbit_app.in
@@ -11,16 +11,19 @@
rabbit_sup,
rabbit_tcp_client_sup]},
{applications, [kernel, stdlib, sasl, mnesia, os_mon]},
-%% we also depend on ssl but it shouldn't be in here as we don't
-%% actually want to start it
+%% we also depend on crypto, public_key and ssl but they shouldn't be
+%% in here as we don't actually want to start it
{mod, {rabbit, []}},
{env, [{tcp_listeners, [{"0.0.0.0", 5672}]},
{ssl_listeners, []},
{ssl_options, []},
{vm_memory_high_watermark, 0.4},
- {backing_queue_module, rabbit_invariable_queue},
+ {msg_store_index_module, rabbit_msg_store_ets_index},
+ {backing_queue_module, rabbit_variable_queue},
{persister_max_wrap_entries, 500},
{persister_hibernate_after, 10000},
+ {msg_store_file_size_limit, 16777216},
+ {queue_index_max_journal_entries, 262144},
{default_user, <<"guest">>},
{default_pass, <<"guest">>},
{default_vhost, <<"/">>},