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:
jparag 2022-05-12 02:51:27 -04:00 committed by GitHub
parent 7268284699
commit 0007369581
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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