summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2014-01-17 14:31:20 +0000
committerSimon MacMullen <simon@rabbitmq.com>2014-01-17 14:31:20 +0000
commitb499052903b568ec82bdaf476adc08e0cac401cd (patch)
tree11f54e54046b9553caf53bd4a17e53f966d48d63
parentb7b99017b78fc03bde5e0ad7ce1a94eb345c8cc2 (diff)
downloadrabbitmq-server-b499052903b568ec82bdaf476adc08e0cac401cd.tar.gz
Fix type error
-rw-r--r--src/rabbit_amqqueue.erl6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rabbit_amqqueue.erl b/src/rabbit_amqqueue.erl
index 8306f134..282113a4 100644
--- a/src/rabbit_amqqueue.erl
+++ b/src/rabbit_amqqueue.erl
@@ -113,9 +113,9 @@
-> [rabbit_types:infos()]).
-spec(force_event_refresh/0 :: () -> 'ok').
-spec(notify_policy_changed/1 :: (rabbit_types:amqqueue()) -> 'ok').
--spec(consumers/1 ::
- (rabbit_types:amqqueue())
- -> [{pid(), rabbit_types:ctag(), boolean()}]).
+-spec(consumers/1 :: (rabbit_types:amqqueue())
+ -> [{pid(), rabbit_types:ctag(), boolean(),
+ rabbit_framing:amqp_table()}]).
-spec(consumer_info_keys/0 :: () -> rabbit_types:info_keys()).
-spec(consumers_all/1 ::
(rabbit_types:vhost())