summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'stable'Michael Klishin2017-02-181-2/+2
|\
| * Update configurable value test expectationMichael Klishin2017-02-181-2/+2
| |
* | Merge branch 'stable'Michael Klishin2017-02-171-2/+2
|\ \ | |/
| * Bump msg_store_io_batch_size according to #1098Michael Klishin2017-02-171-2/+2
| | | | | | | | | | | | Avoids a validation warning and if we increase initial message store disk bound credit to 4000, all values become proportionally increased (compared to < 3.6.7 defaults).
* | Merge pull request #1112 from rabbitmq/rabbitmq-trust-store-56Michael Klishin2017-02-161-1/+27
|\ \ | | | | | | Config schema tests for trust store
| * | Config schema tests for trust storeDaniil Fedotov2017-02-151-1/+27
| | |
* | | Merge branch 'stable'Michael Klishin2017-02-161-1/+1
|\ \ \ | |/ / |/| / | |/
| * Merge pull request #1114 from rabbitmq/rabbitmq-server-1113Michael Klishin2017-02-161-1/+1
| |\ | | | | | | Use new #delta arity introduced to report paged out messages
| | * Use new #delta arity introduced to report paged out messagesDiana Corbacho2017-02-161-1/+1
| |/
* | Merge branch 'stable'Michael Klishin2017-02-153-4/+28
|\ \ | |/
| * Merge pull request #1111 from rabbitmq/rabbitmq-top-20Michael Klishin2017-02-142-3/+27
| |\ | | | | | | Initialize core stats before any gen_server2 is started
| | * Test that gen_server2 buffer length stats are generated for a gen_server2Diana Corbacho2017-02-141-1/+25
| | |
| | * Initialize core stats before any gen_server2 startsDiana Corbacho2017-02-141-2/+2
| |/
| * Remove a comment that's no longer relevantMichael Klishin2017-02-141-1/+1
| | | | | | | | | | sync_mirrors can come from any process, so make sure the reader does not fixate on that unnecessarily
* | Merge pull request #1101 from rabbitmq/fix-escript-hardlinks-copyMichael Klishin2017-02-131-5/+10
|\ \ | | | | | | Makefile: Use rabbitmq-cli's Makefile `install` target
| * | Makefile: Use rabbitmq-cli's Makefile new install targetJean-Sébastien Pédron2017-02-091-10/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The local recipe was moved and adapted to rabbitmq-cli. This allows to get rid of any knowledge of rabbitmq-cli layout. Furthermore, package building will be able to use that target too instead of copying this copy again. Therefore each package can use hardlinks or symlinks independently. [#138925175]
| * | Makefile: Use pax(1) to copy escripts from rabbitmq-cliJean-Sébastien Pédron2017-02-081-5/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before this change, we used cp(1) and its `-r` flag to copy the source directory recursively. Pretty standard. We are using hardlinks in the source directory because all escripts are the same code: the program uses the filename to determine the behavior. Pretty standard too. We settled on hardlinks, not symlinks, because on Windows, you need elevated privileges to use symlinks apparently. Unfortunately, `cp -r` treats those hardlinks as separate files. thus the destination directory contains three distinct copies of the same file: $ ls -l escript/ -rwxr-xr-x 1 dumbbell dumbbell 4545805 Feb 8 17:25 rabbitmq-diagnostics -rwxr-xr-x 1 dumbbell dumbbell 4545805 Feb 8 17:25 rabbitmq-plugins -rwxr-xr-x 1 dumbbell dumbbell 4545805 Feb 8 17:25 rabbitmqctl ^---- Single references to distinct files $ du -sh escript/ 13M escript/ I first tried with `-a` (cp(1) archive mode) instead of `-r`, but the behavior is inconsistent accross platforms. GNU coreutils' cp(1) preserves hardlinks as I would expect, but BSD cp does not. Indeed `-a` isn't a standard option. BSD cp's manpage documents the behavior and suggests to use tar(1), cpio(1) or pax(1) when hardlinks are meant to be preserved. tar(1) and cpio(1) are unavailable by default in MSYS2 (used on Windows), but pax(1) is. So now, we use pax(1) to copy the escript source directory and hardlinks are preserved on all platforms, including Windows. $ ls -l escript/ -rwxr-xr-x 3 dumbbell dumbbell 4545805 Feb 8 13:53 rabbitmq-diagnostics -rwxr-xr-x 3 dumbbell dumbbell 4545805 Feb 8 13:53 rabbitmq-plugins -rwxr-xr-x 3 dumbbell dumbbell 4545805 Feb 8 13:53 rabbitmqctl ^---- Three references to a single file $ du -sh escript/ 4.4M escript/ [#138925175]
* | | Merge pull request #1109 from rabbitmq/proxy-protocol-configurationMichael Klishin2017-02-134-12/+98
|\ \ \ | | | | | | | | Add proxy protocol to configuration
| * | | Add proxy protocol Cuttlefish mapping testsArnaud Cogoluègnes2017-02-131-8/+16
| | | | | | | | | | | | | | | | Part of #589
| * | | Add proxy protocol Cuttlefish mapping testArnaud Cogoluègnes2017-02-131-1/+12
| | | | | | | | | | | | | | | | Part of #589
| * | | Add proxy protocol to configurationArnaud Cogoluègnes2017-02-133-3/+70
|/ / / | | | | | | | | | Part of #589
* | | Polish proxy protocol test suiteArnaud Cogoluègnes2017-02-131-3/+3
| | | | | | | | | | | | | | | | | | Set copyright year to 2017, add rabbit_ct_helpers:testcase_started() call. References #589
* | | Update rabbitmq-components.mkrabbitmq_v3_7_0_milestone12Michael Klishin2017-02-111-2/+2
| | |
* | | Merge branch 'stable'Michael Klishin2017-02-111-50/+83
|\ \ \ | | |/ | |/|
| * | Merge pull request #1107 from rabbitmq/rabbitmq-management-345rabbitmq_v3_6_7_rc1Michael Klishin2017-02-111-50/+83
| |\ \ | | | | | | | | Calculate memory size of pagged messages
| | * \ Merge branch 'stable' into rabbitmq-management-345Michael Klishin2017-02-1015-289/+598
| | |\ \ | | |/ / | |/| |
| | * | Calculate memory size of pagged messagesDiana Corbacho2017-02-101-50/+83
| | | |
* | | | Merge branch 'stable'Daniil Fedotov2017-02-101-12/+16
|\ \ \ \ | |/ / /
| * | | Make dynamic_ha tests more tolerant to timing issuesDaniil Fedotov2017-02-101-12/+16
| | | |
* | | | Update rabbitmq-components.mkMichael Klishin2017-02-101-1/+1
| | | |
* | | | Merge pull request #1095 from rabbitmq/rabbitmq-server-589Michael Klishin2017-02-103-1/+104
|\ \ \ \ | | | | | | | | | | Support proxy protocol
| * | | | Update rabbitmq-components.mkMichael Klishin2017-02-101-0/+3
| | | | |
| * | | | Remove ranch proxy protocol from rabbitmq-componentsArnaud Cogoluègnes2017-02-071-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Will be added once the PRs are merged. References #589
| * | | | Add ranch proxy protocol to rabbitmq-componentsArnaud Cogoluègnes2017-02-071-0/+1
| | | | | | | | | | | | | | | | | | | | References #589
| * | | | Fix MakefileArnaud Cogoluègnes2017-02-071-1/+1
| | | | |
| * | | | Merge branch 'master' into rabbitmq-server-589Arnaud Cogoluègnes2017-02-0711-256/+63
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: Makefile
| * | | | | Add tests for proxy protocol supportArnaud Cogoluègnes2017-02-071-0/+100
| | | | | | | | | | | | | | | | | | | | | | | | References #589
| * | | | | Add proxy_protocol configuration optionsArnaud Cogoluègnes2017-02-021-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | References #589
* | | | | | Merge pull request #1106 from rabbitmq/rabbitmq-auth-backend-cache-7Michael Klishin2017-02-091-2/+44
|\ \ \ \ \ \ | | | | | | | | | | | | | | Support auth backend cache in sysctl config
| * | | | | | Remove a duplicate headMichael Klishin2017-02-091-1/+0
| | | | | | |
| * | | | | | Merge branch 'master' into rabbitmq-auth-backend-cache-7Michael Klishin2017-02-095-900/+58
| |\ \ \ \ \ \ | |/ / / / / / |/| | | | | |
* | | | | | | Accept `cache` as a shortcut for `rabbit_auth_backend_cache`Michael Klishin2017-02-092-1/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | References rabbitmq/rabbitmq-auth-backend-cache#7.
* | | | | | | Merge pull request #1103 from rabbitmq/rabbitmq-auth-backend-ldap-59Michael Klishin2017-02-094-901/+46
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Shorter prefix for LDAP conf keys in test snippets
| * \ \ \ \ \ \ Merge branch 'master' into rabbitmq-auth-backend-ldap-59Michael Klishin2017-02-092-8/+8
| |\ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | |
| * | | | | | | Rename auth backends prefixes to auth_XDaniil Fedotov2017-02-094-901/+46
| | | | | | | |
| * | | | | | | Shorter prefix for LDAP conf keys in test snippetsDaniil Fedotov2017-02-081-13/+13
| | |_|_|_|_|/ | |/| | | | |
| | * | | | | Support auth backend cache in sysctl configDaniil Fedotov2017-02-092-3/+44
| |/ / / / / |/| | | | |
* | | | | | Merge pull request #1105 from Jakauppila/rabbitmq-server-1104Michael Klishin2017-02-092-8/+8
|\ \ \ \ \ \ | |/ / / / / |/| | | | | Quote -conf_dir/-conf_schema_dir path variables
| * | | | | Quote -conf_dir/-conf_schema_dir path variablesJakauppila2017-02-082-8/+8
|/ / / / /
* | | | | merge branch 'stable'Michael Klishin2017-02-081-0/+2
|\ \ \ \ \ | | |_|/ / | |/| | |