From a1dcaea019a63c13dbe10bfd07861fa0beae19b7 Mon Sep 17 00:00:00 2001 From: Googler Date: Wed, 7 Jun 2023 07:47:10 -0700 Subject: [PATCH] De-deprecate `--allowed_local_actions_regexp`, as I found a valid use case. This flag can set a by-mnemonic list of actions to allow locally, `--strategy_regexp` doesn't match against mnemonic but against the message. PiperOrigin-RevId: 538484992 Change-Id: Ib80302d38212515bb2e5dbd09ffa884fdaa12776 --- .../devtools/build/lib/exec/local/LocalExecutionOptions.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/java/com/google/devtools/build/lib/exec/local/LocalExecutionOptions.java b/src/main/java/com/google/devtools/build/lib/exec/local/LocalExecutionOptions.java index 2aca89a5ee373f..96d2f4feff6488 100644 --- a/src/main/java/com/google/devtools/build/lib/exec/local/LocalExecutionOptions.java +++ b/src/main/java/com/google/devtools/build/lib/exec/local/LocalExecutionOptions.java @@ -43,7 +43,6 @@ public class LocalExecutionOptions extends OptionsBase { effectTags = {OptionEffectTag.UNKNOWN}, converter = Converters.RegexPatternConverter.class, defaultValue = "null", - deprecationWarning = "Deprecated, use --strategy_regexp instead.", help = "A regex whitelist for action types which may be run locally. If unset, " + "all actions are allowed to execute locally")