moved driver parameter to cqldriver to make room

This commit is contained in:
Jonathan Shook 2020-03-20 12:06:47 -05:00
parent 0622f31344
commit 3a809bd88f

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() :