summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* reformatted commentsbug22992Alexandru Scvortov2010-07-201-4/+6
|
* reporting of cluster node types now worksAlexandru Scvortov2010-07-201-5/+14
|
* Merged headsEmile Joubert2010-07-142-5/+12
|\
| * Merge bug22875 into defaultSimon MacMullen2010-07-142-2/+11
| |\
| * | >80 lines fix.bug22875Simon MacMullen2010-07-141-1/+2
| | |
| * | added insightful commentAlexandru Scvortov2010-07-141-1/+1
| | |
| * | updated man pageAlexandru Scvortov2010-07-131-4/+6
| | |
| * | empty permissions are not printed as "" anymoreAlexandru Scvortov2010-07-131-2/+0
| | |
| * | "" is changed to "^$" when checking permissionsAlexandru Scvortov2010-07-131-9/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | % rabbitmqctl set_permissions guest "" "" "" Setting permissions for user "guest" in vhost "/" ... ...done. % rabbitmqctl list_permissions Listing permissions in vhost "/" ... guest "" "" "" ...done.
| * | empty strings are displayed as ""Alexandru Scvortov2010-07-131-0/+2
| | | | | | | | | | | | | | | | | | | | | % rabbitmqctl list_permissions Listing permissions in vhost "/" ... guest "" "" "" ...done.
| * | corrected regexpAlexandru Scvortov2010-07-131-1/+1
| | | | | | | | | | | | | | | Used character escaping because erlang-mode has problems correctly parsing "^$".
| * | simplifying refactorMatthias Radestock2010-07-131-9/+8
| | |
| * | "" is transformed to "$^" in rabbitmqctl set_permissionsAlexandru Scvortov2010-07-121-1/+6
| | |
* | | Changelog updates for release 1.8.1Emile Joubert2010-07-142-0/+9
| | |
* | | Added tag rabbitmq_v1_8_1 for changeset 5d9e3ff32dcbEmile Joubert2010-07-140-0/+0
| |/ |/|
* | bug22914 merged into defaultrabbitmq_v1_8_1Marek Majkowski2010-07-142-2/+11
|\ \ | |/ |/|
| * Remove IFS setting on the su commandbug22914David Wragg2010-07-131-10/+8
| | | | | | | | | | | | | | | | | | The script has lots of IFS vulnerabilities before it reaches the su command. If we really want to guard against IFS, we should set it at the top. But how many shell scripts have you ever seen that do that? If the user sets IFS, and breaks things, it seem reasonable to regard that as their problem. There is no security issue here because you should already be root or the rabbitmq user to run the script.
| * "make clean" should clean all the macports-generated filesDavid Wragg2010-07-131-1/+1
| |
| * Remove backslash so that IFS gets the intended value in the wrapper scriptDavid Wragg2010-07-011-1/+1
| |
| * Undo removal of IFSDavid Wragg2010-07-011-1/+2
| |
| * Dropped IFS variable from macports wrapper script.Marek Majkowski2010-07-011-2/+1
| |
| * Default merged into bug22914Marek Majkowski2010-07-012-1/+12
| |\
| | * Explicitly set all the environment variables that su on Linux wouldDavid Wragg2010-06-292-1/+12
| | |
* | | Merged bug22877 into defaultEmile Joubert2010-07-094-53/+117
|\ \ \
| * \ \ merged default into bug22877bug22877Alexandru Scvortov2010-07-0949-539/+765
| |\ \ \
| * | | | deduplicate even the current nodeAlexandru Scvortov2010-07-091-1/+2
| | | | |
| * | | | added deduplication of cluster node listAlexandru Scvortov2010-07-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | Deduplication happens for both cluster and force_cluster because clustering with the same node twice doesn't make sense in either case.
| * | | | improved docsAlexandru Scvortov2010-07-091-0/+6
| | | | |
| * | | | added testAlexandru Scvortov2010-07-061-0/+8
| | | | |
| * | | | all tests now passAlexandru Scvortov2010-07-061-6/+6
| | | | |
| * | | | added links inside docsAlexandru Scvortov2010-07-061-4/+4
| | | | |
| * | | | updated docs and testsAlexandru Scvortov2010-07-062-25/+25
| | | | |
| * | | | changed cluster -f to force_clusterAlexandru Scvortov2010-07-063-14/+35
| | | | |
| * | | | updated man pageAlexandru Scvortov2010-07-051-2/+7
| | | | |
| * | | | added -f switch to rabbitmqctl clusterAlexandru Scvortov2010-07-053-44/+67
| | | | |
* | | | | refactor: introduce rabbit_misc:protocol_error/1Matthias Radestock2010-07-092-5/+7
| | | | | | | | | | | | | | | | | | | | | | | | | so that the channel can get away with knowing a little bit less about error handling
* | | | | Merging bug 22935 into defaultMatthew Sackman2010-07-084-22/+19
|\ \ \ \ \
| * \ \ \ \ merge headsMatthias Radestock2010-07-083-20/+18
| |\ \ \ \ \ | | | |/ / / | | |/| | |
| | * | | | merged bug22950 into defaultAlexandru Scvortov2010-07-073-20/+18
| | |\ \ \ \
| | | * | | | Rename rabbit_reader_queue_collector to rabbit_queue_collector, and shorten ↵bug22950Simon MacMullen2010-07-073-20/+18
| | |/ / / / | | | | | | | | | | | | | | | | | | some function and variable names.
| * | | | | remove incorrect commentMatthias Radestock2010-07-071-2/+1
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | We actually never decode the properties on recovery (or later) since the broker doesn't need them after the initial stages of message processing.
* | | | | amqp_error is a record. Duh.bug22935Simon MacMullen2010-07-081-1/+1
| | | | |
* | | | | Fix type of inner_fun, cosmetics.Simon MacMullen2010-07-082-8/+11
| | | | |
* | | | | Update inner_fun spec.Simon MacMullen2010-07-081-1/+2
| | | | |
* | | | | Make add and delete more symmetrical, tidy up a bit.Simon MacMullen2010-07-081-13/+15
| | | | |
* | | | | Update comment.Simon MacMullen2010-07-081-2/+1
| | | | |
* | | | | Wrap much less in try / catchSimon MacMullen2010-07-082-16/+27
| | | | |
* | | | | Unwrap amqp_error and rethrowSimon MacMullen2010-07-071-1/+6
|/ / / /
* | | | Correct some dict() to dict:dictionary() that were missed.Matthew Sackman2010-07-072-2/+2
| | | |
* | | | Merging bug 21954 onto defaultMatthew Sackman2010-07-070-0/+0
|\ \ \ \