summaryrefslogtreecommitdiff
path: root/qpid/cpp/src
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2009-11-18 15:47:34 +0000
committerAlan Conway <aconway@apache.org>2009-11-18 15:47:34 +0000
commit491c4fd8ed55ec1ab7bdb677d832efed395ae324 (patch)
tree9f1b21dbbe8f07de0e97170aa2dc8a0643159726 /qpid/cpp/src
parent7c53209cb05f1e67e480a21710bdba73f0bd7597 (diff)
downloadqpid-python-491c4fd8ed55ec1ab7bdb677d832efed395ae324.tar.gz
Silence expected warning from cluster tests.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@881807 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
-rw-r--r--qpid/cpp/src/tests/ClusterFailover.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/tests/ClusterFailover.cpp b/qpid/cpp/src/tests/ClusterFailover.cpp
index c2fb1282b1..5ecc25659c 100644
--- a/qpid/cpp/src/tests/ClusterFailover.cpp
+++ b/qpid/cpp/src/tests/ClusterFailover.cpp
@@ -58,7 +58,7 @@ QPID_AUTO_TEST_CASE(testReconnectSameSessionName) {
ClusterFixture::Args args = list_of<string>("--auth")("no")("--no-module-dir")("--no-data-dir")("--load-module")(clusterLib.str());
ClusterFixture cluster(2, args, -1);
Client c0(cluster[0], "foo");
- cluster.kill(0, 9);
+ cluster.killWithSilencer(0, c0.connection, 9);
Client c1(cluster[1], "foo"); // Using same name, should be cleaned up.
}