diff options
| author | Charles E. Rolke <chug@apache.org> | 2013-12-16 16:33:24 +0000 |
|---|---|---|
| committer | Charles E. Rolke <chug@apache.org> | 2013-12-16 16:33:24 +0000 |
| commit | cf50d9802af1031d1c43aa8a9102d5bafc703cbc (patch) | |
| tree | 70e2e70c86d98e6a41d9bc0f2f5f6e5182c85e48 /cpp | |
| parent | 8190e6a395a1d75d6476af75f9f02e38b1d09c9f (diff) | |
| download | qpid-python-cf50d9802af1031d1c43aa8a9102d5bafc703cbc.tar.gz | |
QPID-5421: Restore windows fix that got reverted on r1550819
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1551256 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
| -rw-r--r-- | cpp/src/qpid/ha/BrokerReplicator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/ha/BrokerReplicator.cpp b/cpp/src/qpid/ha/BrokerReplicator.cpp index 0737701431..1587b5b33f 100644 --- a/cpp/src/qpid/ha/BrokerReplicator.cpp +++ b/cpp/src/qpid/ha/BrokerReplicator.cpp @@ -892,7 +892,7 @@ void BrokerReplicator::disconnected() { // Make copy of exchanges so we can work outside the registry lock. ExchangeVector exs; - exchanges.eachExchange(boost::bind(&ExchangeVector::push_back, boost::ref(exs), _1)); + exchanges.eachExchange(boost::bind(&exchangeAccumulatorCallback, boost::ref(exs), _1)); for_each(exs.begin(), exs.end(), boost::bind(&BrokerReplicator::disconnectedQueueReplicator, this, _1)); } |
