diff options
| author | Michael Klishin <michael@novemberain.com> | 2015-08-27 16:48:05 +0300 |
|---|---|---|
| committer | Michael Klishin <michael@novemberain.com> | 2015-08-27 16:48:05 +0300 |
| commit | 06807a4ee5c4989f36d1577164a22652e71bd628 (patch) | |
| tree | 23fb872f0bd23ae892a76f6038761de30077adfa /ebin | |
| parent | 1167e5a5808f47ee743634406a40f1050507d8c2 (diff) | |
| parent | 58e5b3848df61a1e804a01a359b51ee7650fc9dd (diff) | |
| download | rabbitmq-server-git-06807a4ee5c4989f36d1577164a22652e71bd628.tar.gz | |
Merge pull request #286 from rabbitmq/rabbitmq-server-284
Makes CREDIT_DISC_BOUND and IO_BATCH_SIZE configurable
Diffstat (limited to 'ebin')
| -rw-r--r-- | ebin/rabbit_app.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ebin/rabbit_app.in b/ebin/rabbit_app.in index 37658d7312..636851989e 100644 --- a/ebin/rabbit_app.in +++ b/ebin/rabbit_app.in @@ -83,5 +83,8 @@ gen_fsm, ssl]}, {ssl_apps, [asn1, crypto, public_key, ssl]}, %% see rabbitmq-server#114 - {mirroring_flow_control, true} + {mirroring_flow_control, true}, + %% see rabbitmq-server#227 and related tickets + {msg_store_credit_disc_bound, {2000, 500}}, + {msg_store_io_batch_size, 2048} ]}]}. |
