Merge branch 'issue-87' of github.com:nosqlbench/nosqlbench into issue-87

This commit is contained in:
phact 2020-03-20 14:53:42 -04:00
commit 9af4cf62a3

View File

@ -55,7 +55,7 @@ public class CQLSessionCache implements Shutdownable {
String host = activityDef.getParams().getOptionalString("host").orElse("localhost");
int port = activityDef.getParams().getOptionalInteger("port").orElse(9042);
String driverType = activityDef.getParams().getOptionalString("driver").orElse("dse");
String driverType = activityDef.getParams().getOptionalString("cqldriver").orElse("dse");
Cluster.Builder builder =
driverType.toLowerCase().equals("dse") ? DseCluster.builder() :