This is an automated email from the ASF dual-hosted git repository.
marcuse pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cassandra-dtest.git
The following commit(s) were added to refs/heads/master by this push:
new 8282c75 Remove dclocal_read_repair_chance from
multidatacenter_local_quorum test
8282c75 is described below
commit 8282c75e33b9fe15fc734894b4659d835cffbde4
Author: Stefan Miklosovic <[email protected]>
AuthorDate: Tue Mar 26 09:44:32 2019 +1100
Remove dclocal_read_repair_chance from multidatacenter_local_quorum test
Patch by Stefan Miklosovic; reviewed by marcuse for CASSANDRA-15065
---
snitch_test.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/snitch_test.py b/snitch_test.py
index 9bfa487..8aa3288 100644
--- a/snitch_test.py
+++ b/snitch_test.py
@@ -165,7 +165,7 @@ class TestDynamicEndpointSnitch(Tester):
scope='ReadStage', name='CompletedTasks')
session = self.patient_exclusive_cql_connection(coordinator_node)
session.execute("CREATE KEYSPACE snitchtestks WITH replication =
{'class': 'NetworkTopologyStrategy', 'dc1': 3, 'dc2': 3}")
- session.execute("CREATE TABLE snitchtestks.tbl1 (key int PRIMARY KEY)
WITH speculative_retry = 'NONE' AND dclocal_read_repair_chance = 0.0")
+ session.execute("CREATE TABLE snitchtestks.tbl1 (key int PRIMARY KEY)
WITH speculative_retry = 'NONE'")
read_stmt = session.prepare("SELECT * FROM snitchtestks.tbl1 where key
= ?")
read_stmt.consistency_level = ConsistencyLevel.LOCAL_QUORUM
insert_stmt = session.prepare("INSERT INTO snitchtestks.tbl1 (key)
VALUES (?)")
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]