Skip to content

Commit

Permalink
fix: use hybrid worker by default
Browse files Browse the repository at this point in the history
make changes from #429 enable by default

BREAKING CHANGE: Each SpotBugsTask will launch a `java` process by default.
It may affect build performance but is necessary to fix the resource leak
reported as #416.
  • Loading branch information
KengoTODA committed Oct 7, 2021
1 parent e739a30 commit 8c2667a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public void apply(Project project) {
createPluginConfiguration(project);

String enableWorkerApi = getPropertyOrDefault(project, FEATURE_FLAG_WORKER_API, "true");
String enableHybridWorker = getPropertyOrDefault(project, FEATURE_FLAG_HYBRID_WORKER, "false");
String enableHybridWorker = getPropertyOrDefault(project, FEATURE_FLAG_HYBRID_WORKER, "true");
project
.getTasks()
.withType(SpotBugsTask.class)
Expand Down

0 comments on commit 8c2667a

Please sign in to comment.