summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* More indentation regularisationMichael Bridgen2010-01-181-52/+42
|
* Indentation, and consistently ignore hook returns except for validate/1.Michael Bridgen2010-01-181-40/+53
|
* Change to different exchange callbacks. Requires a bit moreMichael Bridgen2010-01-157-99/+103
| | | | | calculation in delete_queue_bindings and recover to collect the bindings.
* Merge from default, to get new boot sequence among other things.Michael Bridgen2010-01-148-127/+289
|\
| * bug22209: added a comment to use upmap carefully.Alexander Schmolck2010-01-131-2/+5
| |
| * merge bug 22039 into defaultMatthew Sackman2009-12-226-117/+264
| |\
| | * Refactor away boot_core_processes.Tony Garnock-Jones2009-12-172-33/+60
| | |
| | * Refactor boot_recovery, boot_tcp_listeners and boot_ssl_listenersTony Garnock-Jones2009-12-172-40/+39
| | |
| | * Merge default into bug22039Tony Garnock-Jones2009-12-179-58/+245
| | |\
| | * | cosmetics (mainly line length, alignment and trailing WS)Matthew Sackman2009-12-161-48/+69
| | | |
| | * | Split up and tweak startup order.Tony Garnock-Jones2009-12-143-50/+48
| | | |
| | * | Switch to explicit MFA, and symbolic boot step names.Tony Garnock-Jones2009-12-141-56/+69
| | | | | | | | | | | | | | | | | | | | Add comments to sort_boot_steps. Reject duplicate boot step names.
| | * | Move planning code out of activator and into rabbit proper.Tony Garnock-Jones2009-12-143-103/+95
| | | |
| | * | Enforce acyclicity; check presence and export of steps.Tony Garnock-Jones2009-12-141-4/+36
| | | |
| | * | Fixup specs.Tony Garnock-Jones2009-12-141-2/+2
| | | |
| | * | Add "-rabbit_boot_step" module attribute to specify startup sequence.Tony Garnock-Jones2009-12-143-121/+167
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - The plugin activator prepares the startup plan. - This means that it's no longer going to work to run without a boot script. Consequently, I've added a call to rabbitmq-activate-plugins to the Makefile for the 'all' target. - I've refactored the old boot sequence to use the new method for specifying boot steps. I've conservatively put dependencies forcing them into a straight line, as they were before. - Since the plugin activator runs so frequently, I've made it suppress the (spurious) warnings we get about core beam files being out of date on Ubuntu.
| | * | Merge default into bug22039Tony Garnock-Jones2009-12-141-12/+12
| | |\ \
| | * \ \ Merge default into bug22039Tony Garnock-Jones2009-12-145-66/+91
| | |\ \ \
| | * \ \ \ Merge default into bug22039Tony Garnock-Jones2009-12-011-19/+6
| | |\ \ \ \
| | * | | | | Avoid compiler warning about unused term; weirdly, the replaced idiom works ↵Tony Garnock-Jones2009-11-301-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | elsewhere
| | * | | | | Change tactic to examine modules in .app files for rabbit_static_hook_* modulesTony Garnock-Jones2009-11-301-14/+16
| | | | | | |
| | * | | | | Initial stab at the problemTony Garnock-Jones2009-11-301-10/+30
| | | | | | |
| * | | | | | merging v1_7 into defaultMatthew Sackman2009-12-191-7/+15
| |\ \ \ \ \ \
| | * \ \ \ \ \ merging bug 20916 into v1_7Matthew Sackman2009-12-191-7/+15
| | |\ \ \ \ \ \
| | | * | | | | | not_found error on attempt to declare a queue that exists on a stopped nodeMatthias Radestock2009-12-181-7/+15
| | |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | this prevents loss or duplication of messages when that node recovers I considered returing {ok, Q} | {error, not_found} from internal_declare (and subsequently declare), and let the channel deal with throwing the appropriate amqp error. But - that would be a change to a crucial internal API that is used by quite a few extensions - it would make the return type inconsistent with rabbit_exchange:declare, which too only returns X, not {ok, X}. - the rabbit_amqqueue module already knows about amqp errors - see with_or_die. So this is not breaking any concern separation.
| | * | | | | | Merge no-pluggable-exchange branch into v1.7-series branch.Michael Bridgen2009-12-1841-758/+980
| | |\ \ \ \ \ \
| | * | | | | | | create branch for v1_7Matthias Radestock2009-12-180-0/+0
| | | | | | | | |
* | | | | | | | | Change to (almost) the mooted API, and support recover and validate.Michael Bridgen2010-01-148-31/+46
| | | | | | | | |
* | | | | | | | | Run the hooks outside and immediately after the mnesia transactions,Michael Bridgen2010-01-132-84/+165
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | if something newsworthy happened. Mostly this is just a case of changing the thunk run in the transaction so it returns an indication of what the result was (e.g., a new exchange).
* | | | | | | | | Remove mnesia event implementation of exchange hooks, again.Michael Bridgen2010-01-132-110/+1
| | | | | | | | |
* | | | | | | | | merge bug22068 into bug22169Matthias Radestock2009-12-189-70/+155
|\ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ Merge default into bug22068Tony Garnock-Jones2009-12-1715-136/+348
| |\ \ \ \ \ \ \ \ \ | | | |_|_|_|_|_|_|/ | | |/| | | | | | |
| * | | | | | | | | Ignore any old recordsTony Garnock-Jones2009-12-021-2/+2
| | | | | | | | | |
| * | | | | | | | | Cope more gracefully with failed callbacks.Tony Garnock-Jones2009-12-021-3/+11
| | | | | | | | | |
| * | | | | | | | | Add declare/1 callback.Tony Garnock-Jones2009-12-027-7/+14
| | | | | | | | | |
| * | | | | | | | | Use mnesia table events instead of in-transaction callbacks.Tony Garnock-Jones2009-12-029-70/+140
| | |_|_|_|_|/ / / | |/| | | | | | |
* | | | | | | | | post-backout mergeMatthias Radestock2009-12-183-9/+117
|\ \ \ \ \ \ \ \ \
| * | | | | | | | | Backed out changeset b2ff7bbc3df6Matthias Radestock2009-12-183-9/+117
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | re-introducing pluggable exchange types on a branch
* | | | | | | | | | post-backout mergeMatthias Radestock2009-12-181-0/+1
|\ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | Backed out changeset f878dbe8e0beMatthias Radestock2009-12-181-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | re-introducing pluggable exchange types on a branch
* | | | | | | | | | | post-backout mergeMatthias Radestock2009-12-1815-220/+561
|\ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | Backed out changeset 443c7b2d7e1Matthias Radestock2009-12-1815-220/+561
| | |_|_|_|_|_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | re-introducing pluggable exchange types on a branch
* | | | | | | | | | | create branch for bug 22169Matthias Radestock2009-12-180-0/+0
| |_|_|_|_|/ / / / / |/| | | | | | | | |
* | | | | | | | | | merge bug22082 into defaultMatthias Radestock2009-12-1817-670/+220
|\ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / | | | | | / / / / / | |_|_|_|/ / / / / |/| | | | | | | |
| * | | | | | | | post-backout mergeMatthias Radestock2009-12-1815-561/+220
| |\ \ \ \ \ \ \ \ | | |/ / / / / / / | |/| | | | | | |
| | * | | | | | | Backed out changeset 71e93e17450cMatthias Radestock2009-12-1815-561/+220
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | pluggable exchange types are not ready for prime time yet
| * | | | | | | | post-backout mergeMatthias Radestock2009-12-181-1/+0
| |\ \ \ \ \ \ \ \ | | |_|/ / / / / / | |/| | | | | | |
| | * | | | | | | Backed out changeset b2363fc1a51aMatthias Radestock2009-12-181-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | pluggable exchange types are not ready for prime time yet
| * | | | | | | | post-backout mergeMatthias Radestock2009-12-183-117/+9
| |\ \ \ \ \ \ \ \
| | * | | | | | | | Backed out changeset 3ab59ae0f0e9Matthias Radestock2009-12-183-117/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | pluggable exchange types are not ready for prime time yet