summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2013-06-21 15:48:50 +0100
committerSimon MacMullen <simon@rabbitmq.com>2013-06-21 15:48:50 +0100
commit0371265eb754b0e7b364d1a5d9e3c7624f59f91f (patch)
tree1078c529da89883ed19b9979a5337097d81afc10
parent240e64eaf4a1f3ff5b190df5abf1008a6ebffa7c (diff)
downloadrabbitmq-server-0371265eb754b0e7b364d1a5d9e3c7624f59f91f.tar.gz
Make it clearer what I meant.
-rw-r--r--src/rabbit_mirror_queue_misc.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_mirror_queue_misc.erl b/src/rabbit_mirror_queue_misc.erl
index cb91b650..8a663824 100644
--- a/src/rabbit_mirror_queue_misc.erl
+++ b/src/rabbit_mirror_queue_misc.erl
@@ -218,7 +218,7 @@ report_deaths(MirrorPid, IsMaster, QueueName, DeadPids) ->
store_updated_slaves(Q = #amqqueue{slave_pids = SPids,
sync_slave_pids = SSPids}) ->
%% TODO now that we clear sync_slave_pids in rabbit_durable_queue,
- %% do we still need this?
+ %% do we still need this filtering?
SSPids1 = [SSPid || SSPid <- SSPids, lists:member(SSPid, SPids)],
Q1 = Q#amqqueue{sync_slave_pids = SSPids1},
ok = rabbit_amqqueue:store_queue(Q1),