summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Sackman <matthew@lshift.net>2010-04-13 15:47:20 +0100
committerMatthew Sackman <matthew@lshift.net>2010-04-13 15:47:20 +0100
commit183085e1c386bac6342302a92ea2cf865ebdb8fc (patch)
treeb19f49b056b554dc1b2f9246d0e7b6970605c7d1
parente3c5ef30c51c62ad6ccc290bd35d0371a84ed91a (diff)
downloadrabbitmq-server-git-183085e1c386bac6342302a92ea2cf865ebdb8fc.tar.gz
tx_commit takes a list of publishes, not a list of guids
-rw-r--r--include/rabbit_backing_queue_spec.hrl2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rabbit_backing_queue_spec.hrl b/include/rabbit_backing_queue_spec.hrl
index afb549187e..3a0f701b85 100644
--- a/include/rabbit_backing_queue_spec.hrl
+++ b/include/rabbit_backing_queue_spec.hrl
@@ -42,7 +42,7 @@
-spec(ack/2 :: ([ack()], state()) -> state()).
-spec(tx_publish/2 :: (basic_message(), state()) -> state()).
-spec(tx_rollback/2 :: ([guid()], state()) -> state()).
--spec(tx_commit/4 :: ([guid()], [ack()], {pid(), any()}, state()) ->
+-spec(tx_commit/4 :: ([basic_message()], [ack()], {pid(), any()}, state()) ->
{boolean(), state()}).
-spec(requeue/2 :: ([{basic_message(), ack()}], state()) -> state()).
-spec(len/1 :: (state()) -> non_neg_integer()).