You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/openapi-generator-gradle-plugin/src/main/kotlin/org/openapitools/generator/gradle/plugin/tasks/GenerateTask.kt
+16-11Lines changed: 16 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -1064,25 +1064,30 @@ abstract class GenerateTask : DefaultTask() {
1064
1064
// exits, and Gradle reuses the same worker daemon across tasks that share the same classpath,
1065
1065
// so startup cost is amortized — typically paid only once per parallel slot.
1066
1066
val isolation = workerIsolation.getOrElse("classloader").lowercase()
1067
+
val quietMode = quiet.getOrElse(false)
1067
1068
val workQueue =when (isolation) {
1068
1069
"process"-> {
1069
-
val heapMsg = maxWorkerHeapSize.orNull?.let { " (maxHeapSize=$it)" } ?:""
0 commit comments