CASSANDRA-9143 change needs dtest change

CASSANDRA-9143 introduced strict check for not allowing
incremental subrange repair.
dtest needs to pass `-full` to repair command to invoke subrange
repair.


Project: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/commit/f69ced02
Tree: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/tree/f69ced02
Diff: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/diff/f69ced02

Branch: refs/heads/master
Commit: f69ced02b99ecc641b4b8eb149d12afe97e6f100
Parents: dfeb5df
Author: Yuki Morishita <mor.y...@gmail.com>
Authored: Tue Mar 28 14:40:57 2017 +0900
Committer: Joel Knighton <joel.knigh...@gmail.com>
Committed: Mon Jun 19 15:34:24 2017 -0500

----------------------------------------------------------------------
 repair_tests/repair_test.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra-dtest/blob/f69ced02/repair_tests/repair_test.py
----------------------------------------------------------------------
diff --git a/repair_tests/repair_test.py b/repair_tests/repair_test.py
index 5276556..ad46d18 100644
--- a/repair_tests/repair_test.py
+++ b/repair_tests/repair_test.py
@@ -1047,9 +1047,9 @@ class TestRepair(BaseRepairTest):
         node2.stop(wait_other_notice=True)
         node1.stress(['write', 'n=1M', 'no-warmup', '-schema', 
'replication(factor=3)', '-rate', 'threads=30'])
         node2.start(wait_for_binary_proto=True)
-        t1 = threading.Thread(target=node1.nodetool, args=('repair keyspace1 
standard1 -st {} -et {}'.format(str(node3.initial_token), 
str(node1.initial_token)),))
-        t2 = threading.Thread(target=node2.nodetool, args=('repair keyspace1 
standard1 -st {} -et {}'.format(str(node1.initial_token), 
str(node2.initial_token)),))
-        t3 = threading.Thread(target=node3.nodetool, args=('repair keyspace1 
standard1 -st {} -et {}'.format(str(node2.initial_token), 
str(node3.initial_token)),))
+        t1 = threading.Thread(target=node1.nodetool, args=('repair keyspace1 
standard1 -full -st {} -et {}'.format(str(node3.initial_token), 
str(node1.initial_token)),))
+        t2 = threading.Thread(target=node2.nodetool, args=('repair keyspace1 
standard1 -full -st {} -et {}'.format(str(node1.initial_token), 
str(node2.initial_token)),))
+        t3 = threading.Thread(target=node3.nodetool, args=('repair keyspace1 
standard1 -full -st {} -et {}'.format(str(node2.initial_token), 
str(node3.initial_token)),))
         t1.start()
         t2.start()
         t3.start()


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org

Reply via email to