summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Radestock <matthias@rabbitmq.com>2012-11-24 10:14:09 +0000
committerMatthias Radestock <matthias@rabbitmq.com>2012-11-24 10:14:09 +0000
commitdfb04276e78cc67bffa869effe34c77d82cf039c (patch)
tree759f6ef0f36acc45e89f4f5449f2c5752b839559
parent74bcdd2562b16621e66e84d1cec08aed22532298 (diff)
downloadrabbitmq-server-bug25324.tar.gz
'pid' is a valid INFO_KEYbug25324
and some code, namely the clustering tests, rely on that
-rw-r--r--src/rabbit_amqqueue_process.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_amqqueue_process.erl b/src/rabbit_amqqueue_process.erl
index 476f806d..5ddafba8 100644
--- a/src/rabbit_amqqueue_process.erl
+++ b/src/rabbit_amqqueue_process.erl
@@ -108,7 +108,7 @@
owner_pid
]).
--define(INFO_KEYS, ?CREATION_EVENT_KEYS ++ ?STATISTICS_KEYS -- [name]).
+-define(INFO_KEYS, [pid | ?CREATION_EVENT_KEYS ++ ?STATISTICS_KEYS -- [name]]).
%%----------------------------------------------------------------------------