diff options
| author | Simon MacMullen <simon@rabbitmq.com> | 2014-01-22 11:55:35 +0000 |
|---|---|---|
| committer | Simon MacMullen <simon@rabbitmq.com> | 2014-01-22 11:55:35 +0000 |
| commit | 3d4deca7dd5d70e2fbfe58c2cd2491b0e7d5cfa6 (patch) | |
| tree | 0f26cd77ee141e4002ffaa239dc38c540e743c1a /include | |
| parent | 4b5b7601f506286db3fce4fd9c0f293e8be5eda3 (diff) | |
| download | rabbitmq-server-git-3d4deca7dd5d70e2fbfe58c2cd2491b0e7d5cfa6.tar.gz | |
Substantially improve both performance and correctness: 1) really don't treat presence of MsgSeqNo as a cue we are doing confirms, and 2) get the right dtree function when we receive a MsgSeqNo.
Diffstat (limited to 'include')
| -rw-r--r-- | include/rabbit.hrl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rabbit.hrl b/include/rabbit.hrl index 8b42cdea15..ba52a407ae 100644 --- a/include/rabbit.hrl +++ b/include/rabbit.hrl @@ -70,7 +70,7 @@ is_persistent}). -record(ssl_socket, {tcp, ssl}). --record(delivery, {mandatory, sender, message, msg_seq_no}). +-record(delivery, {mandatory, confirmed, sender, message, msg_seq_no}). -record(amqp_error, {name, explanation = "", method = none}). -record(event, {type, props, timestamp}). |
