From 0007369581e8358ffb14234f7f9503ab6face4d2 Mon Sep 17 00:00:00 2001 From: jparag Date: Thu, 12 May 2022 02:51:27 -0400 Subject: [PATCH] MINOR: parameter name fix for maxScalacThreads (#12151) There's a typo in build.gradle, and cause the `maxScalacThreads` parameter doesn't work as expected --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index b80de613850..8fd32e68743 100644 --- a/build.gradle +++ b/build.gradle @@ -76,7 +76,7 @@ ext { ) 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) userIgnoreFailures = project.hasProperty('ignoreFailures') ? ignoreFailures : false