Skip to content

Commit

Permalink
Set --legacy_important_outputs to false by default.
Browse files Browse the repository at this point in the history
This flag reduces the largest proto size, which helps avoid sharp edges with remote execution systems (e.g., #12050).

RELNOTES[INC]: --legacy_important_outputs now has a default of false.

Closes #14353.

PiperOrigin-RevId: 449979885
  • Loading branch information
benjaminp authored and copybara-github committed May 20, 2022
1 parent 4b87044 commit 577cfbc
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@
public class BuildEventProtocolOptions extends OptionsBase {

@Option(
name = "legacy_important_outputs",
defaultValue = "true",
documentationCategory = OptionDocumentationCategory.LOGGING,
effectTags = {OptionEffectTag.AFFECTS_OUTPUTS},
help = "Use this to suppress generation of the legacy important_outputs field in the "
+ "TargetComplete event."
)
name = "legacy_important_outputs",
defaultValue = "false",
documentationCategory = OptionDocumentationCategory.LOGGING,
effectTags = {OptionEffectTag.AFFECTS_OUTPUTS},
help =
"Use this to suppress generation of the legacy important_outputs field in the "
+ "TargetComplete event.")
public boolean legacyImportantOutputs;

@Option(
Expand Down

0 comments on commit 577cfbc

Please sign in to comment.