mirror of https://github.com/apache/kafka.git
MINOR: parameter name fix for maxScalacThreads (#12151)
There's a typo in build.gradle, and cause the `maxScalacThreads` parameter doesn't work as expected
This commit is contained in:
parent
7268284699
commit
0007369581
|
@ -76,7 +76,7 @@ ext {
|
||||||
)
|
)
|
||||||
|
|
||||||
maxTestForks = project.hasProperty('maxParallelForks') ? maxParallelForks.toInteger() : Runtime.runtime.availableProcessors()
|
maxTestForks = project.hasProperty('maxParallelForks') ? maxParallelForks.toInteger() : Runtime.runtime.availableProcessors()
|
||||||
maxScalacThreads = project.hasProperty('maxScalacThreads') ? maxScalacParallelism.toInteger() :
|
maxScalacThreads = project.hasProperty('maxScalacThreads') ? maxScalacThreads.toInteger() :
|
||||||
Math.min(Runtime.runtime.availableProcessors(), 8)
|
Math.min(Runtime.runtime.availableProcessors(), 8)
|
||||||
userIgnoreFailures = project.hasProperty('ignoreFailures') ? ignoreFailures : false
|
userIgnoreFailures = project.hasProperty('ignoreFailures') ? ignoreFailures : false
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue