diff options
| author | Simon MacMullen <simon@rabbitmq.com> | 2011-01-21 14:29:55 +0000 |
|---|---|---|
| committer | Simon MacMullen <simon@rabbitmq.com> | 2011-01-21 14:29:55 +0000 |
| commit | 7eb8f63e101d19ec6d7046c26159204f13508c94 (patch) | |
| tree | 4f5bbb291be6d03d1b8dbacfc8975c345607c46e /src | |
| parent | 3695364c713b5a5476c61233eaea41a4beabf890 (diff) | |
| download | rabbitmq-server-git-7eb8f63e101d19ec6d7046c26159204f13508c94.tar.gz | |
Rename the info item for consistency.
Diffstat (limited to 'src')
| -rw-r--r-- | src/rabbit_channel.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rabbit_channel.erl b/src/rabbit_channel.erl index fbf0e573d7..91559ea6c9 100644 --- a/src/rabbit_channel.erl +++ b/src/rabbit_channel.erl @@ -44,7 +44,7 @@ confirm, consumer_count, messages_unacknowledged, - unconfirmed, + messages_unconfirmed, acks_uncommitted, prefetch_count, client_flow_blocked]). @@ -1295,7 +1295,7 @@ i(transactional, #ch{transaction_id = TxnKey}) -> TxnKey =/= none; i(confirm, #ch{confirm_enabled = CE}) -> CE; i(consumer_count, #ch{consumer_mapping = ConsumerMapping}) -> dict:size(ConsumerMapping); -i(unconfirmed, #ch{unconfirmed = UC}) -> +i(messages_unconfirmed, #ch{unconfirmed = UC}) -> gb_trees:size(UC); i(messages_unacknowledged, #ch{unacked_message_q = UAMQ, uncommitted_ack_q = UAQ}) -> |
