diff options
Diffstat (limited to 'cpp/src/qpid/cluster')
| -rw-r--r-- | cpp/src/qpid/cluster/Cluster.cpp | 2 | ||||
| -rw-r--r-- | cpp/src/qpid/cluster/SessionManager.h | 4 |
2 files changed, 1 insertions, 5 deletions
diff --git a/cpp/src/qpid/cluster/Cluster.cpp b/cpp/src/qpid/cluster/Cluster.cpp index 05ab876e14..3c73719ef9 100644 --- a/cpp/src/qpid/cluster/Cluster.cpp +++ b/cpp/src/qpid/cluster/Cluster.cpp @@ -88,7 +88,7 @@ void Cluster::handle(AMQFrame& frame) { } void Cluster::notify() { - AMQFrame frame(0, ClusterNotifyBody(ProtocolVersion(), url)); + AMQFrame frame(in_place<ClusterNotifyBody>(ProtocolVersion(), url)); handle(frame); } diff --git a/cpp/src/qpid/cluster/SessionManager.h b/cpp/src/qpid/cluster/SessionManager.h index 56cd1d9d28..10fe5f82d1 100644 --- a/cpp/src/qpid/cluster/SessionManager.h +++ b/cpp/src/qpid/cluster/SessionManager.h @@ -57,10 +57,6 @@ class SessionManager : public framing::HandlerUpdater, public framing::FrameHand /** ChannelUpdater: add cluster handlers to session. */ void update(framing::ChannelId, framing::FrameHandler::Chains&); - // FIXME aconway 2007-08-30: Need setUp and tearDown instead of just - // update, so we can tear down closed sesions. - // Or add FrameHandler::destroy(Session) to notify all handlers? - /** FrameHandler: map frames from the cluster to sessions. */ void handle(framing::AMQFrame&); |
