summaryrefslogtreecommitdiff
path: root/test/rabbitmq-env.bats
Commit message (Collapse)AuthorAgeFilesLines
* Change repo "root" to deps/rabbitPhilip Kuryloski2020-11-131-128/+0
| | | | rabbit must not be the monorepo root application, as other applications depend on it
* Max number of atoms hasn't changed in ↵Michael Klishin2018-08-021-2/+2
| | | | 118b448631a699736f1380d7990989c7e61f94ff, back out my changes
* Correct resource limit defaults: Erlang distribution buffer size and othersMichael Klishin2018-08-021-9/+9
| | | | | | | | | They were bumped to x10 the values in 118b448631a699736f1380d7990989c7e61f94ff by mistake. Kudos to Chris Friesen for reporting this. Closes #1659.
* Test RABBITMQ_var vs var behaviour when using rabbitmq-env.confGerhard Lazu2018-02-261-32/+121
| | | | | | | | | | | Covers the following variables: * RABBITMQ_SCHEDULER_BIND_TYPE & SCHEDULER_BIND_TYPE * RABBITMQ_DISTRIBUTION_BUFFER_SIZE & DISTRIBUTION_BUFFER_SIZE * RABBITMQ_MAX_NUMBER_OF_PROCESSES & MAX_NUMBER_OF_PROCESSES * RABBITMQ_MAX_NUMBER_OF_ATOMS & MAX_NUMBER_OF_ATOMS (cherry picked from commit 118b448631a699736f1380d7990989c7e61f94ff)
* Variables in rabbitmq-env.conf and rabbitmq-env-conf.bat do not begin with ↵Luke Bakken2018-02-231-4/+4
| | | | RABBITMQ_, adjust Unix and Windows files accordingly
* Make maximum number of Erlang atoms configurable via envGerhard Lazu2018-02-231-0/+10
| | | | | | | This was the only property in SERVER_ERL_ARGS that was not configurable. Even though it's unlikely that this will need to be increased above the existing 5 million default, we are consistent in allowing all properties in SERVER_ERL_ARGS to be cofigured.
* Make maximum number of Erlang processes configurable via envGerhard Lazu2018-02-231-4/+14
| | | | | | | This property is essential for nodes that need to handle many connections / channels / queues. Related to #1513
* Read rabbitmq-env.conf a bit earlier to pick up two variablesGerhard Lazu2017-08-221-0/+19
Prior to this change, setting RABBITMQ_DISTRIBUTION_BUFFER_SIZE and/or RABBITMQ_SCHEDULER_BIND_TYPE would not be added to SERVER_ERL_ARGS because the latter variable was built prior to reading rabbitmq-env.conf Fixes #1338 [#150452491] Signed-off-by: Luke Bakken <lbakken@pivotal.io>