aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main
diff options
context:
space:
mode:
authorGravatar kush <kush@google.com>2018-01-02 12:33:48 -0800
committerGravatar Copybara-Service <copybara-piper@google.com>2018-01-02 12:35:57 -0800
commit5a0857e54f96ab6cf763902e27ba79bc203d38d3 (patch)
treec8d96dd75c34f17a8cf9503e35ed7a4cb3369832 /src/main
parent0518796f5b9b3580a9fd9140978360f8a38bdcba (diff)
Change the default for value for experimental_skyframe_native_filesets now that most Google builds have it set to true.
RELNOTES: None PiperOrigin-RevId: 180578926
Diffstat (limited to 'src/main')
-rw-r--r--src/main/java/com/google/devtools/build/lib/analysis/config/BuildConfiguration.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/analysis/config/BuildConfiguration.java b/src/main/java/com/google/devtools/build/lib/analysis/config/BuildConfiguration.java
index 6cc9d11f78..3eb69668f7 100644
--- a/src/main/java/com/google/devtools/build/lib/analysis/config/BuildConfiguration.java
+++ b/src/main/java/com/google/devtools/build/lib/analysis/config/BuildConfiguration.java
@@ -792,7 +792,7 @@ public class BuildConfiguration implements BuildEvent {
@Option(
name = "experimental_skyframe_native_filesets",
- defaultValue = "false",
+ defaultValue = "true",
category = "experimental",
documentationCategory = OptionDocumentationCategory.BUILD_TIME_OPTIMIZATION,
effectTags = { OptionEffectTag.BAZEL_INTERNAL_CONFIGURATION },
@@ -800,8 +800,7 @@ public class BuildConfiguration implements BuildEvent {
help =
"If true, Blaze will use the skyframe-native implementation of the Fileset rule."
+ " This offers improved performance in incremental builds of Filesets as well as"
- + " correct incremental behavior, but is not yet stable. The default is false,"
- + " meaning Blaze uses the legacy impelementation of Fileset."
+ + " correct incremental behavior."
)
public boolean skyframeNativeFileset;