summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Change capture value spec in regex to support older stdlibDaniil Fedotov2015-12-041-1/+3
|
* Merge branch 'stable'Michael Klishin2015-12-040-0/+0
|\
| * drop the quotesMichael Klishin2015-12-041-1/+1
| |
| * copyMichael Klishin2015-12-041-1/+1
| |
| * Re-indent with EmacsMichael Klishin2015-12-041-1/+1
| |
| * copywritingMichael Klishin2015-12-041-1/+1
| |
| * Don't log anything for non-virgin nodesMichael Klishin2015-12-041-2/+0
| |
| * Log on startup if starting virgin node, or existing databaseDaniil Fedotov2015-12-041-4/+10
| |
* | Merge pull request #473 from rabbitmq/rabbitmq-server-168Michael Klishin2015-12-041-4/+8
|\ \ | | | | | | Log on startup if starting virgin node, or existing database
| * | drop the quotesMichael Klishin2015-12-041-1/+1
| | |
| * | copyMichael Klishin2015-12-041-1/+1
| | |
| * | Re-indent with EmacsMichael Klishin2015-12-041-1/+1
| | |
| * | copywritingMichael Klishin2015-12-041-1/+1
| | |
| * | Don't log anything for non-virgin nodesMichael Klishin2015-12-041-2/+0
| | |
| * | Log on startup if starting virgin node, or existing databaseDaniil Fedotov2015-12-041-4/+10
| | |
* | | Merge pull request #472 from rabbitmq/rabbitmq-server-20Michael Klishin2015-12-041-1/+1
|\ \ \ | |/ / |/| | Added unsigned field types
| * | Added unsigned field typesDaniil Fedotov2015-12-041-1/+1
|/ /
* | Merge branch 'stable'Michael Klishin2015-12-042-4/+16
|\ \ | |/
| * Merge pull request #466 from rabbitmq/rabbitmq-server-465Michael Klishin2015-12-041-3/+14
| |\ | | | | | | rabbit_mirror_queue_coordinator: Ensure GM exited before terminating
| | * rabbit_mirror_queue_coordinator: Ensure GM exited before terminatingJean-Sébastien Pédron2015-12-031-3/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | If the coordinator exits before the GM informed all other GMs (and therefore all slaves) about the termination of the queue, another slave could be promoted as a master in between. This causes the old master's GM to wait forever than other GMs exit. Fixes #465.
| * | Merge pull request #468 from rabbitmq/rabbitmq-server-464Jean-Sébastien Pédron2015-12-031-1/+2
| |\ \ | | |/ | |/| Make wait command wait for start_rabbitmq_server command
| | * Make wait command wait for start_rabbitmq_server commandDaniil Fedotov2015-12-031-1/+2
| |/
* | Update rabbitmq-components.mkJean-Sébastien Pédron2015-12-031-0/+2
| |
* | Merge pull request #462 from rabbitmq/rabbitmq-server-448Michael Klishin2015-12-037-14/+118
|\ \ | | | | | | Support setting vm_memory_high_watermark and disk_free_limit in units
| * | CosmeticsMichael Klishin2015-12-031-6/+6
| | |
| * | Use MiB as an exampleMichael Klishin2015-12-031-9/+10
| | | | | | | | | | | | That's what management plugin uses
| * | Convert match to integer, support more suffix valuesMichael Klishin2015-12-031-13/+13
| | | | | | | | | | | | | | | Sadly most users don't read the docs so supporting more permutations is more than a nice-to-have.
| * | Re-indent with EmacsMichael Klishin2015-12-031-11/+11
| | |
| * | Moved parse function to separate module and specific parses to monitor modulesDaniil Fedotov2015-12-025-58/+80
| | |
| * | syntax errorsDaniil Fedotov2015-12-021-6/+4
| | |
| * | More loggingDaniil Fedotov2015-12-023-3/+4
| | |
| * | Support setting vm_memory_high_watermark and disk_free_limit in memory unitsDaniil Fedotov2015-12-026-11/+93
|/ /
* | Update rabbitmq-components.mkJean-Sébastien Pédron2015-12-011-5/+20
| |
* | Load rabbitmq-tools.mkJean-Sébastien Pédron2015-12-011-1/+2
| |
* | Update rabbitmq-components.mkJean-Sébastien Pédron2015-12-011-11/+24
| |
* | make source-dist: Exclude more filesJean-Sébastien Pédron2015-12-011-0/+5
| | | | | | | | | | | | erlang.mk's *.d and some generated files are still distributed if the projects were built. Maybe we should run `make clean` before distributing a project.
* | Distributed deps: Move from a blacklist to a whitelistJean-Sébastien Pédron2015-12-011-14/+18
| | | | | | | | | | | | It will be easier to add more projects to the Umbrella: we won't have to remember to blacklist projects which are not ready to be distributed with a release.
* | Merge pull request #458 from rabbitmq/rabbitmq-server-457Michael Klishin2015-11-301-3/+20
|\ \ | | | | | | HiPE: Compile modules when RabbitMQ is started on an existing node
| * | HiPE: Compile modules when RabbitMQ is started on an existing nodeJean-Sébastien Pédron2015-11-301-3/+20
|/ / | | | | | | | | | | | | | | | | Now, maybe_hipe_compile/0 is always called, no matter if RabbitMQ is started during node boot or on an already running node. To avoid compiling modules several times, we check if they are already natively compiled and skip those where it's true. Fixes #457.
* | Merge branch 'rabbitmq-server-455'Jean-Sébastien Pédron2015-11-301-1/+14
|\ \
| * | Fix HiPE compilation during startupJean-Sébastien Pédron2015-11-301-1/+14
|/ / | | | | | | | | | | | | | | | | Now that several modules were moved to rabbitmq-common, they are stored in an EZ archive and do not exist as simple files on disk. hipe:c/1 expects the file to exist. So now, we get the code from code:get_object_code/1 and pass it to hipe:compile/4. Fixes #455.
* | Update rabbitmq-components.mkJean-Sébastien Pédron2015-11-301-0/+5
| |
* | This comment is no longer relevantrabbitmq_v3_6_0_rc1Michael Klishin2015-11-271-2/+0
| |
* | Merge branch 'stable'Michael Klishin2015-11-261-1/+1
|\ \ | |/
| * Merge pull request #452 from gigablah/rabbitmq-server-451Alvaro Videla2015-11-261-1/+1
| |\ | | | | | | Fix RABBITMQ_CTL_ERL_ARGS variable in rabbitmq-plugins
| | * Fix RABBITMQ_CTL_ERL_ARGS variable in rabbitmq-pluginsChris Heng2015-11-261-1/+1
| |/
* | make tests: Fix typo in how $(TARGETS_IN_RABBITMQ_TEST) is constructedJean-Sébastien Pédron2015-11-261-2/+2
| |
* | Merge pull request #454 from rabbitmq/rabbitmq-server-453Michael Klishin2015-11-261-8/+2
|\ \ | | | | | | Cleanup TCP options in example config file
| * | Cleanup TCP options in example config fileLoïc Hoguin2015-11-261-8/+2
|/ /
* | Update rabbitmq-components.mkJean-Sébastien Pédron2015-11-261-1/+1
| |