diff options
author | Matthew Sackman <matthew@rabbitmq.com> | 2010-11-29 17:20:26 +0000 |
---|---|---|
committer | Matthew Sackman <matthew@rabbitmq.com> | 2010-11-29 17:20:26 +0000 |
commit | b1eeb9af85fdd85a44d164f202c6879a74924cb6 (patch) | |
tree | ca29a02d495e12625d53361d64a788f4cb585c2d /include | |
parent | 5a2ad8926058366a3cd01dde6f8a9f96df1cf283 (diff) | |
download | rabbitmq-server-b1eeb9af85fdd85a44d164f202c6879a74924cb6.tar.gz |
Make the tests work again. Also mirror_pids => extra_pids on the basis that it could be reusable for other purposes
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 09cc3eb3..7bea4f52 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, mirror_pids}). + arguments, pid, extra_pids}). %% mnesia doesn't like unary records, so we add a dummy 'value' field -record(route, {binding, value = const}). |