diff options
author | Matthew Sackman <matthew@rabbitmq.com> | 2010-11-29 16:37:03 +0000 |
---|---|---|
committer | Matthew Sackman <matthew@rabbitmq.com> | 2010-11-29 16:37:03 +0000 |
commit | 5a2ad8926058366a3cd01dde6f8a9f96df1cf283 (patch) | |
tree | e97db1412f38a1eede2bf3079fdf4f65c3e335c1 /include | |
parent | 809e3999e60dd89e1e8e86a84695f45202232e11 (diff) | |
download | rabbitmq-server-5a2ad8926058366a3cd01dde6f8a9f96df1cf283.tar.gz |
Lesser of many evils...
Diffstat (limited to 'include')
-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 a1987fb2..09cc3eb3 100644 --- a/include/rabbit.hrl +++ b/include/rabbit.hrl @@ -54,7 +54,7 @@ -record(exchange, {name, type, durable, auto_delete, arguments}). -record(amqqueue, {name, durable, auto_delete, exclusive_owner = none, - arguments, pid}). + arguments, pid, mirror_pids}). %% mnesia doesn't like unary records, so we add a dummy 'value' field -record(route, {binding, value = const}). |