diff options
| author | Alvaro Videla <videlalvaro@gmail.com> | 2015-08-25 18:30:31 +0200 |
|---|---|---|
| committer | Alvaro Videla <videlalvaro@gmail.com> | 2015-08-27 13:00:31 +0200 |
| commit | 58e5b3848df61a1e804a01a359b51ee7650fc9dd (patch) | |
| tree | 68d13cd5a819748f581663519f451e5a1b52c12e /ebin | |
| parent | b61c80d1d75d162b8fd9e2958f03bd5b4ad96b82 (diff) | |
| download | rabbitmq-server-git-58e5b3848df61a1e804a01a359b51ee7650fc9dd.tar.gz | |
Makes CREDIT_DISC_BOUND and IO_BATCH_SIZE configurable
Fixes #284
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 76376f11bd..89194c1637 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} ]}]}. |
