diff options
| author | Simon MacMullen <simon@rabbitmq.com> | 2012-07-05 16:00:28 +0100 |
|---|---|---|
| committer | Simon MacMullen <simon@rabbitmq.com> | 2012-07-05 16:00:28 +0100 |
| commit | 72cdb42bb7059164c974180ab3633bce8b4d194c (patch) | |
| tree | f930b063fc9c466f3857591e6654e2f4b1052b6d /include/rabbit.hrl | |
| parent | 63477af925d226c937aee6984c6380699ede0a11 (diff) | |
| download | rabbitmq-server-git-72cdb42bb7059164c974180ab3633bce8b4d194c.tar.gz | |
Rough sketch of dynamic queue HA-ness:
* Remove #amqqueue.mirror_nodes, we will always derive this from policy
* Remove everything to do with x-ha-* arguments
* Abstract a bit more stuff into rabbit_mirror_queue_misc
* Add a new "at-least" mode
This works! Sort of. Changing policies on the fly, changing HAness altogether, having "at-least" set up a new mirror when one disappears, and probably some other things do not work.
Diffstat (limited to 'include/rabbit.hrl')
| -rw-r--r-- | include/rabbit.hrl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rabbit.hrl b/include/rabbit.hrl index e8b4a6232e..7be82aef85 100644 --- a/include/rabbit.hrl +++ b/include/rabbit.hrl @@ -47,7 +47,7 @@ -record(exchange_serial, {name, next}). -record(amqqueue, {name, durable, auto_delete, exclusive_owner = none, - arguments, pid, slave_pids, mirror_nodes, policy}). + arguments, pid, slave_pids, policy}). %% mnesia doesn't like unary records, so we add a dummy 'value' field -record(route, {binding, value = const}). |
