summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Harrop <rharrop@vmware.com>2010-10-06 21:35:33 +0100
committerRob Harrop <rharrop@vmware.com>2010-10-06 21:35:33 +0100
commitde31efa054eb147908b8a789124c9d845a25362a (patch)
tree675d8da6a2f73af373368a8a80057360bf2c2952
parent1dcfb86c14f608a12e70e83cde8ddb3b748b0bab (diff)
downloadrabbitmq-server-de31efa054eb147908b8a789124c9d845a25362a.tar.gz
removed ttl from queue ttl info items
-rw-r--r--src/rabbit_amqqueue_process.erl5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/rabbit_amqqueue_process.erl b/src/rabbit_amqqueue_process.erl
index 65166f32..95a5070b 100644
--- a/src/rabbit_amqqueue_process.erl
+++ b/src/rabbit_amqqueue_process.erl
@@ -98,8 +98,7 @@
durable,
auto_delete,
arguments,
- owner_pid,
- ttl
+ owner_pid
]).
-define(INFO_KEYS, ?CREATION_EVENT_KEYS ++ ?STATISTICS_KEYS -- [pid]).
@@ -660,8 +659,6 @@ i(memory, _) ->
M;
i(backing_queue_status, #q{backing_queue_state = BQS, backing_queue = BQ}) ->
BQ:status(BQS);
-i(ttl, #q{ttl = TTL}) ->
- TTL;
i(Item, _) ->
throw({bad_argument, Item}).