Skip to content

Commit

Permalink
Merge branch 'b1.6' of github.com:datastax/spark-cassandra-connector …
Browse files Browse the repository at this point in the history
…into b1.6
  • Loading branch information
RussellSpitzer committed Jan 29, 2018
2 parents b04a223 + e0acab6 commit 8ec266c
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ case class ReadConf(
consistencyLevel: ConsistencyLevel = ReadConf.ConsistencyLevelParam.default,
taskMetricsEnabled: Boolean = ReadConf.TaskMetricParam.default,
throughputJoinQueryPerSec: Long = ReadConf.ThroughputJoinQueryPerSecParam.default,
parallelismLevel: Int = ReadConf.ParallelismLevelParam.default
parallelismLevel: Int = ReadConf.ParallelismLevelParam.default
)


Expand Down Expand Up @@ -89,7 +89,8 @@ object ReadConf {
consistencyLevel = ConsistencyLevel.valueOf(conf.get(ConsistencyLevelParam.name, ConsistencyLevelParam.default.name)),
taskMetricsEnabled = conf.getBoolean(TaskMetricParam.name, TaskMetricParam.default),
throughputJoinQueryPerSec = conf.getLong(ThroughputJoinQueryPerSecParam.name,
ThroughputJoinQueryPerSecParam.default)
ThroughputJoinQueryPerSecParam.default),
parallelismLevel = conf.getInt(ParallelismLevelParam.name, ParallelismLevelParam.default)
)
}

Expand Down

0 comments on commit 8ec266c

Please sign in to comment.