Skip to content

Commit

Permalink
Automated rollback of commit 577cfbc.
Browse files Browse the repository at this point in the history
*** Reason for rollback ***

Breaking ResultStore customers.

RELNOTES[INC]: --legacy_important_outputs default reverted to true.

*** Original change description ***

Set --legacy_important_outputs to false by default.

This flag reduces the largest proto size, which helps avoid sharp edges with remote execution systems (e.g., #12050).

Closes #14353.

PiperOrigin-RevId: 450067034
  • Loading branch information
Googler authored and copybara-github committed May 20, 2022
1 parent 84f819a commit 4eb62cd
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 = "false",
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 = "true",
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 4eb62cd

Please sign in to comment.