summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'stable' into rabbitmq-server-960Michael Klishin2016-10-263-7/+27
|\
| * Merge pull request #1011 from rabbitmq/rabbitmq-server-972Michael Klishin2016-10-261-5/+14
| |\ | | | | | | Avoid duplicates in members list during partial partition
| | * Merge branch 'stable' into rabbitmq-server-972Michael Klishin2016-10-261-1/+6
| | |\
| | * | Avoid duplicates in members list during partial partitionDiana Corbacho2016-10-251-5/+14
| | | |
| * | | Merge pull request #1009 from rabbitmq/rabbitmq-server-1006Michael Klishin2016-10-261-1/+7
| |\ \ \ | | |_|/ | |/| | Stop master in receiving sync_start from another master after partition
| | * | Stop master in receiving sync_start from another master after partitionDiana Corbacho2016-10-251-1/+7
| | |/
| * | Merge pull request #1010 from rabbitmq/rabbitmq-server-1007Michael Klishin2016-10-261-1/+6
| |\ \ | | |/ | |/| Ignore policy_changed on slaves
| | * Ignore policy_changed on slavesDiana Corbacho2016-10-251-1/+6
| |/
* | Ignore unknown ackDiana Corbacho2016-10-261-43/+68
|/
* Merge pull request #999 from rabbitmq/rabbitmq-website-282Karl Nilsson2016-10-172-0/+94
|\ | | | | Document configuration encryption
| * Change formatting for rabbitmqctl helpArnaud Cogoluègnes2016-10-171-12/+2
| |
| * Document configuration encryptionArnaud Cogoluègnes2016-10-172-0/+104
|/ | | | | References #979 Fixes https://github.com/rabbitmq/rabbitmq-website/issues/282
* Remove version_equivalance entry from test groupArnaud Cogoluègnes2016-10-141-1/+0
|
* Use config_entry_decoder key for config encryptionArnaud Cogoluègnes2016-10-143-13/+13
| | | | Fixes #979
* Merge pull request #997 from rabbitmq/broaden-version-format-supportDaniil Fedotov2016-10-141-10/+0
|\ | | | | Move version equivalence tests to common
| * unit_SUITE: move version equivalence tests to commonJean-Sébastien Pédron2016-10-121-10/+0
|/ | | | [#131650399]
* Merge pull request #994 from rabbitmq/rabbitmq-server-979Karl Nilsson2016-10-129-4/+736
|\ | | | | Add optional password based encryption of configuration values
| * Add better message when decryption fails in configArnaud Cogoluègnes2016-10-124-14/+50
| |
| * Merge branch 'stable' into rabbitmq-server-979Arnaud Cogoluègnes2016-10-116-440/+138
| |\ | |/ |/| | | | | Conflicts: src/rabbit.app.src
* | Merge branch 'rabbitmq-server-990' into stablerabbitmq_v3_6_6_milestone5Andrew Bruce2016-10-052-18/+73
|\ \
| * | Choose master from intersection of sync slaves and policy nodesAndrew Bruce2016-10-052-18/+73
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously, when applying an HA policy with the 'nodes' type, if the current master was not part of the new policy, then the first synchronised slave was chosen as the new master. This would happen even if the node was not part of the new policy. For example, if we began with: Master A Slaves [B, C] Then requested a new policy of just [C], we'd end up with: Master B Slaves [C] Instead, choose the master from the intersection of (nodes in the policy) and (synchronised slaves). Issue #990 [#126767013]
* | Merge pull request #978 from rabbitmq/rabbitmq-server-973Michael Klishin2016-09-302-6/+36
|\ \ | | | | | | Add VM GC calls configuration for lazy queues
| * | Use a name that's more to the pointMichael Klishin2016-09-292-2/+2
| | |
| * | Naming, cosmeticsMichael Klishin2016-09-292-16/+17
| | |
| * | Merge branch 'stable' into rabbitmq-server-973Michael Klishin2016-09-294-10/+24
| |\ \
| * | | renamed run_count to gc_run_countGabriele Santomaggio2016-09-262-12/+12
| | | |
| * | | defaul value for run_countGabriele Santomaggio2016-09-261-3/+5
| | | |
| * | | Make the GC calls configurable for lazy queuesGabriele Santomaggio2016-09-232-5/+32
| | | |
* | | | Merge pull request #981 from rabbitmq/rabbitmq-server-980Michael Klishin2016-09-301-399/+0
|\ \ \ \ | | | | | | | | | | Remove `pg2_fixed`
| * | | | Remove `pg2_fixed`Jean-Sébastien Pédron2016-09-291-399/+0
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | We now use the standard `pg2` module. Fixes rabbitmq/rabbitmq-server#980. [#131354699]
* | | | health_check_SUITE: Use a RabbitMQ nodename suffixJean-Sébastien Pédron2016-09-291-17/+29
| |/ / |/| |
| | * Create tests for rabbitmqctl encodeArnaud Cogoluègnes2016-10-115-61/+173
| | |
| | * Use terms in rabbitmqctl encodeArnaud Cogoluègnes2016-10-111-9/+21
| | |
| | * Add encode command to rabbitmqctlArnaud Cogoluègnes2016-10-104-14/+87
| | |
| | * Remove a pointless commentLoïc Hoguin2016-10-061-3/+1
| | |
| | * Add a test for decrypt at start without passphraseLoïc Hoguin2016-10-062-5/+29
| | |
| | * Add tests for decrypting at application startLoïc Hoguin2016-10-063-1/+92
| | |
| | * Add a test to decrypt environment valuesLoïc Hoguin2016-10-062-2/+66
| | |
| | * Add configuration for decrypting hidden configuration valuesLoïc Hoguin2016-10-062-8/+99
| | |
| | * Add commentsLoïc Hoguin2016-09-291-0/+8
| | |
| | * Add rabbit_pbe:encrypt_term and decrypt_termLoïc Hoguin2016-09-292-0/+38
| | |
| | * Add rabbit_pbe module for password based encryptionLoïc Hoguin2016-09-292-0/+185
| |/ |/|
* | Tests timingDaniil Fedotov2016-09-282-7/+13
| |
* | Merge branch 'rabbitmq-server-975' into stableMichael Klishin2016-09-261-3/+9
|\ \
| * | Stop syncer if there is no slaves to sync toDaniil Fedotov2016-09-261-3/+9
|/ /
* | Update rabbitmq-components.mkJean-Sébastien Pédron2016-09-231-0/+2
|/
* Update erlang.mkJean-Sébastien Pédron2016-09-221-316/+352
|
* Makefile: Move install recipes to rabbitmq-releaseJean-Sébastien Pédron2016-09-221-117/+0
| | | | [#130659985]
* Move all release handling bits to rabbitmq-releaseJean-Sébastien Pédron2016-09-2151-6274/+6
| | | | [#130659985]
* Merge branch 'rabbitmq-server-944' into stableMichael Klishin2016-09-212-5/+24
|\