diff options
author | Alan Conway <aconway@apache.org> | 2010-03-03 20:57:18 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2010-03-03 20:57:18 +0000 |
commit | 49e4c876ca169792bd0ffbd6a7372541cb27298c (patch) | |
tree | 713867cbc04ae963a95ab7912ba576c34faad2a6 /cpp | |
parent | e855d055a9c136828dd45336e372cd2d8726b6e7 (diff) | |
download | qpid-python-49e4c876ca169792bd0ffbd6a7372541cb27298c.tar.gz |
Amended cluster error message for decoding failures.
New message says "Error decoding events, may indicate a broker version mismatch"
since version mismatch is the most likely causes of a decoding error.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@918679 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/src/qpid/cluster/Cluster.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/cluster/Cluster.cpp b/cpp/src/qpid/cluster/Cluster.cpp index f49fbb03a5..460f974b36 100644 --- a/cpp/src/qpid/cluster/Cluster.cpp +++ b/cpp/src/qpid/cluster/Cluster.cpp @@ -232,7 +232,7 @@ Cluster::Cluster(const ClusterSettings& set, broker::Broker& b) : dispatcher(cpg, poller, boost::bind(&Cluster::leave, this)), deliverEventQueue(boost::bind(&Cluster::deliveredEvent, this, _1), boost::bind(&Cluster::leave, this), - "Error decoding events", + "Error decoding events, may indicate a broker version mismatch", poller), deliverFrameQueue(boost::bind(&Cluster::deliveredFrame, this, _1), boost::bind(&Cluster::leave, this), |