diff options
| author | Michael Klishin <mklishin@pivotal.io> | 2015-09-17 16:18:24 +0300 |
|---|---|---|
| committer | Michael Klishin <mklishin@pivotal.io> | 2015-09-17 16:18:24 +0300 |
| commit | e8446a21d053445aaa856e300960656dab9ada66 (patch) | |
| tree | 1257235e3153f7f14dbd2915df76c0e121426577 /ebin | |
| parent | 76f9565ecc25357d894508f61e1d2864176de527 (diff) | |
| parent | 0c9bf69dc9d96cfe4b100c289e7ef259caa74253 (diff) | |
| download | rabbitmq-server-git-e8446a21d053445aaa856e300960656dab9ada66.tar.gz | |
Merge branch 'stable'
Make credit flow setting a tuple, per discussion with @videlalvaro.
Diffstat (limited to 'ebin')
| -rw-r--r-- | ebin/rabbit_app.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ebin/rabbit_app.in b/ebin/rabbit_app.in index fa70058930..ac60ed6825 100644 --- a/ebin/rabbit_app.in +++ b/ebin/rabbit_app.in @@ -84,8 +84,6 @@ {ssl_apps, [asn1, crypto, public_key, ssl]}, %% see rabbitmq-server#114 {mirroring_flow_control, true}, - {credit_flow_initial_credit, 200}, - {credit_flow_more_credit_after, 50}, %% see rabbitmq-server#227 and related tickets. %% msg_store_credit_disc_bound only takes effect when %% messages are persisted to the message store. If messages @@ -94,5 +92,7 @@ %% writing to the queue index. See the setting %% queue_index_embed_msgs_below above. {msg_store_credit_disc_bound, {2000, 500}}, - {msg_store_io_batch_size, 2048} + {msg_store_io_batch_size, 2048}, + %% see rabbitmq-server#143 + {credit_flow_default_credit, {200, 50}} ]}]}. |
