summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniil Fedotov <hairyhum@gmail.com>2018-10-03 14:18:23 +0100
committerDaniil Fedotov <hairyhum@gmail.com>2018-10-03 14:18:23 +0100
commit08075cf6c7a86eda49b18b94d00d81ad05fc6273 (patch)
treeb692d92b75a2056cf9d797de1eed342bc19bf2f1 /src
parent4e2dc488a74cb73f0edede65c0d9d2dbeca28971 (diff)
downloadrabbitmq-server-git-08075cf6c7a86eda49b18b94d00d81ad05fc6273.tar.gz
removed TODO
Diffstat (limited to 'src')
-rw-r--r--src/rabbit_channel.erl1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/rabbit_channel.erl b/src/rabbit_channel.erl
index f35a5a6d80..3a90563079 100644
--- a/src/rabbit_channel.erl
+++ b/src/rabbit_channel.erl
@@ -1580,7 +1580,6 @@ handle_publishing_queue_down(QPid, Reason, State = #ch{unconfirmed = UC,
case rabbit_misc:is_abnormal_exit(Reason) of
true -> {MXs, UC1} = dtree:take_all(QPid, UC),
record_rejects(MXs, State1#ch{unconfirmed = UC1});
- %% TODO send_confirms_and_nacks here?
false -> {MXs, UC1} = dtree:take(QPid, UC),
record_confirms(MXs, State1#ch{unconfirmed = UC1})