Skip to content

Commit

Permalink
Fixing numeric typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mccheah committed Mar 27, 2015
1 parent e2e30ce commit 1d6d1be
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class KryoSerializer(conf: SparkConf)
throw new IllegalArgumentException("spark.kryoserializer.buffer.max.mb must be less than " +
s"2048 mb, got: + $maxBufferSizeMb mb.")
}
private val maxBufferSize = maxBufferSizeMb * 1026 * 1024
private val maxBufferSize = maxBufferSizeMb * 1024 * 1024

private val referenceTracking = conf.getBoolean("spark.kryo.referenceTracking", true)
private val registrationRequired = conf.getBoolean("spark.kryo.registrationRequired", false)
Expand Down

0 comments on commit 1d6d1be

Please sign in to comment.