Repository: cassandra-dtest Updated Branches: refs/heads/master f4888c897 -> 99c695e85
Adjust error messages after CASSANDRA-14756 Project: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/repo Commit: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/commit/99c695e8 Tree: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/tree/99c695e8 Diff: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/diff/99c695e8 Branch: refs/heads/master Commit: 99c695e850057a16bddd0e314aef31dde1d76a2f Parents: f4888c8 Author: Alex Petrov <[email protected]> Authored: Mon Sep 17 14:16:56 2018 +0200 Committer: Alex Petrov <[email protected]> Committed: Thu Sep 27 10:43:19 2018 +0200 ---------------------------------------------------------------------- bootstrap_test.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cassandra-dtest/blob/99c695e8/bootstrap_test.py ---------------------------------------------------------------------- diff --git a/bootstrap_test.py b/bootstrap_test.py index 661aef9..6e7682f 100644 --- a/bootstrap_test.py +++ b/bootstrap_test.py @@ -284,7 +284,10 @@ class TestBootstrap(Tester): assert_bootstrap_state(self, node3, 'COMPLETED') else: if consistent_range_movement: - node3.watch_log_for("A node required to move the data consistently is down") + if cluster.version() < '4.0': + node3.watch_log_for("A node required to move the data consistently is down") + else: + node3.watch_log_for("Necessary replicas for strict consistency were removed by source filters") else: node3.watch_log_for("Unable to find sufficient sources for streaming range") assert_not_running(node3) --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
