From 6345c747d8cb1819e70c853becadbf8a989decf1 Mon Sep 17 00:00:00 2001 From: buchgr Date: Wed, 23 Jan 2019 07:53:15 -0800 Subject: [PATCH] Automated rollback of commit 30536baa4a410d8c0a7adab5cd58cd8a2ac7e46c. *** Reason for rollback *** Rollback this incompatible flag change for the 0.22 release due to the problems introduced by https://github.com/bazelbuild/bazel/commit/baa1786fe6ac01511bb15689a81b2978f39686da. I think it's too risky to ship this code in the 0.22 release. *** Original change description *** Flipping --incompatible_remote_symlinks to true. After this change, Bazel by default will use RE API SymlinkNodes to represent symbolic links in the action input tree. PiperOrigin-RevId: 230529171 --- .../com/google/devtools/build/lib/remote/RemoteOptions.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/google/devtools/build/lib/remote/RemoteOptions.java b/src/main/java/com/google/devtools/build/lib/remote/RemoteOptions.java index 0cbd6dba9d48d9..9de74f5a97ac12 100644 --- a/src/main/java/com/google/devtools/build/lib/remote/RemoteOptions.java +++ b/src/main/java/com/google/devtools/build/lib/remote/RemoteOptions.java @@ -237,7 +237,7 @@ public final class RemoteOptions extends OptionsBase { @Option( name = "incompatible_remote_symlinks", - defaultValue = "true", + defaultValue = "false", category = "remote", documentationCategory = OptionDocumentationCategory.EXECUTION_STRATEGY, effectTags = {OptionEffectTag.EXECUTION},