Restrict data dir for no_anticompaction_of_already_repaired_test
Project: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/repo Commit: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/commit/2e24587b Tree: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/tree/2e24587b Diff: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/diff/2e24587b Branch: refs/heads/master Commit: 2e24587b8c206eccca71ba7d93e7e0c75e718644 Parents: c17e011 Author: Paulo Motta <[email protected]> Authored: Tue Apr 4 17:51:27 2017 -0300 Committer: Paulo Motta <[email protected]> Committed: Tue Apr 4 17:51:27 2017 -0300 ---------------------------------------------------------------------- repair_tests/repair_test.py | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cassandra-dtest/blob/2e24587b/repair_tests/repair_test.py ---------------------------------------------------------------------- diff --git a/repair_tests/repair_test.py b/repair_tests/repair_test.py index 5148b00..5276556 100644 --- a/repair_tests/repair_test.py +++ b/repair_tests/repair_test.py @@ -295,6 +295,8 @@ class TestRepair(BaseRepairTest): cluster = self.cluster debug("Starting cluster..") + # disable JBOD conf since the test expects sstables to be on the same disk + cluster.set_datadir_count(1) cluster.populate(3).start(wait_for_binary_proto=True) node1, node2, node3 = cluster.nodelist() # we use RF to make sure to cover only a set of sub-ranges when doing -full -pr --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
