Skip to content

Commit

Permalink
fix org.gradle.priority in GradleProjectTest
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-enko committed Sep 19, 2024
1 parent 9794478 commit bc0753c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,10 @@ class GradleProjectTest(
var daemonIdleTimeout: Duration? = 30.seconds,
/**
* Specifies the scheduling priority for the Gradle daemon and all processes launched by it.
*
* Valid values are `low` and `normal`, or set as `null` to set no value.
*/
var daemonSchedulingPriority: SchedulingPriority? = SchedulingPriority.Low,
var daemonSchedulingPriority: String? = "low",
var maxWorkers: Int? = null,
val jvmArgs: JvmArgs = JvmArgs(),

Expand All @@ -72,8 +74,6 @@ class GradleProjectTest(
// org.gradle.vfs.verbose=(true,false)
// org.gradle.vfs.watch=(true,false)
) {
enum class SchedulingPriority { Low, Normal }

fun jvm(config: JvmArgs.() -> Unit): Unit = jvmArgs.config()
}

Expand Down

0 comments on commit bc0753c

Please sign in to comment.