aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/runtime/BlazeServerStartupOptions.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/runtime/BlazeServerStartupOptions.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/runtime/BlazeServerStartupOptions.java19
1 files changed, 10 insertions, 9 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/runtime/BlazeServerStartupOptions.java b/src/main/java/com/google/devtools/build/lib/runtime/BlazeServerStartupOptions.java
index a79eb773b3..faed25a203 100644
--- a/src/main/java/com/google/devtools/build/lib/runtime/BlazeServerStartupOptions.java
+++ b/src/main/java/com/google/devtools/build/lib/runtime/BlazeServerStartupOptions.java
@@ -408,15 +408,16 @@ public class BlazeServerStartupOptions extends OptionsBase {
)
public int connectTimeoutSecs;
+ @Deprecated
@Option(
- name = "expand_configs_in_place",
- defaultValue = "true", // NOTE: only for documentation, value is always passed by the client.
- documentationCategory = OptionDocumentationCategory.BAZEL_CLIENT_OPTIONS,
- effectTags = {OptionEffectTag.BAZEL_INTERNAL_CONFIGURATION, OptionEffectTag.CHANGES_INPUTS},
- metadataTags = {OptionMetadataTag.EXPERIMENTAL},
- help =
- "Changes the expansion of --config flags to be done in-place, as opposed to in a fixed "
- + "point expansion between normal rc options and command-line specified options."
- )
+ name = "expand_configs_in_place",
+ defaultValue = "true", // NOTE: only for documentation, value is always passed by the client.
+ documentationCategory = OptionDocumentationCategory.BAZEL_CLIENT_OPTIONS,
+ effectTags = {OptionEffectTag.NO_OP},
+ metadataTags = {OptionMetadataTag.DEPRECATED},
+ deprecationWarning = "This option is now a no-op and will soon be deleted.",
+ help =
+ "Changed the expansion of --config flags to be done in-place, as opposed to in a fixed "
+ + "point expansion between normal rc options and command-line specified options.")
public boolean expandConfigsInPlace;
}