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
commite6cb0a71a160ef1ff60a4773ab16401528973cf3 (patch)
tree759f6ef0f36acc45e89f4f5449f2c5752b839559
parent417e51a2880c0b05a54a7f3c20dc93baff93d839 (diff)
downloadrabbitmq-server-git-e6cb0a71a160ef1ff60a4773ab16401528973cf3.tar.gz
'pid' is a valid INFO_KEY
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 476f806d0d..5ddafba8fa 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]]).
%%----------------------------------------------------------------------------