We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5254f73 commit d12f6c0Copy full SHA for d12f6c0
1 file changed
benchmarks/base.py
@@ -63,8 +63,7 @@
63
def setup(hosts):
64
log.info("Using 'cassandra' package from %s", cassandra.__path__)
65
66
- cluster = Cluster(hosts, protocol_version=1)
67
- cluster.set_core_connections_per_host(HostDistance.LOCAL, 1)
+ cluster = Cluster(hosts)
68
try:
69
session = cluster.connect()
70
@@ -91,8 +90,7 @@ def setup(hosts):
91
90
92
93
def teardown(hosts):
94
95
96
97
session.execute("DROP KEYSPACE " + KEYSPACE)
98
cluster.shutdown()
0 commit comments