Skip to content

Commit

Permalink
Promote changing the priority of the daemon process
Browse files Browse the repository at this point in the history
This was introduced in Gradle 5.0 (#7403) and no more has been done on
it since then.
  • Loading branch information
jjohannes committed Jan 18, 2021
1 parent d6e6ee2 commit 47c35b9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions subprojects/docs/src/docs/release/notes.md
Expand Up @@ -142,6 +142,10 @@ It is no longer required to activate the functionality using `java.modularity.in

[Dependency verification](userguide/dependency_verification.html) is promoted to a stable feature.

### Changing the priority of the daemon process

Changing the [priority of the daemon process](userguide/command_line_interface.html#sec:command_line_performance) with `--priority` is now a stable feature.

### Promoted APIs
In Gradle 7.0 we moved the following classes or methods out of incubation phase.

Expand Down
Expand Up @@ -210,7 +210,7 @@ public static class PriorityOption extends StringBuildOption<DaemonParameters> {
public static final String GRADLE_PROPERTY = "org.gradle.priority";

public PriorityOption() {
super(GRADLE_PROPERTY, CommandLineOptionConfiguration.create("priority", "Specifies the scheduling priority for the Gradle daemon and all processes launched by it. Values are 'normal' (default) or 'low'").incubating());
super(GRADLE_PROPERTY, CommandLineOptionConfiguration.create("priority", "Specifies the scheduling priority for the Gradle daemon and all processes launched by it. Values are 'normal' (default) or 'low'"));
}

@Override
Expand Down

0 comments on commit 47c35b9

Please sign in to comment.