From a6cd17977794202ad4c9af07ae8f2c46c8298634 Mon Sep 17 00:00:00 2001 From: Keith Smiley Date: Mon, 24 Jan 2022 09:15:17 -0800 Subject: [PATCH] Flip --experimental_worker_allow_json_protocol Based on the discussion here https://github.com/bazelbuild/bazel/pull/13607 we want to flip this and leave it around temporarily, but there are also some refactorings coming around how to do that. This flips the value now so it can be used without the flag sooner in rolling releases. Closes #13745. PiperOrigin-RevId: 423831532 (cherry picked from commit 9e16a6484e94c358aa77a6ed7b1ded3243b65e8f) --- .../com/google/devtools/build/lib/worker/WorkerOptions.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/google/devtools/build/lib/worker/WorkerOptions.java b/src/main/java/com/google/devtools/build/lib/worker/WorkerOptions.java index 6a2b9b9e8721c5..43d2c5fe3ae457 100644 --- a/src/main/java/com/google/devtools/build/lib/worker/WorkerOptions.java +++ b/src/main/java/com/google/devtools/build/lib/worker/WorkerOptions.java @@ -48,7 +48,7 @@ public class WorkerOptions extends OptionsBase { @Option( name = "experimental_worker_allow_json_protocol", - defaultValue = "false", + defaultValue = "true", documentationCategory = OptionDocumentationCategory.UNDOCUMENTED, effectTags = {OptionEffectTag.BUILD_FILE_SEMANTICS}, help =