From d844e65ff333b1dc460ecb575c8ee42b670c54c4 Mon Sep 17 00:00:00 2001 From: ulfjack Date: Mon, 22 Jan 2018 06:52:46 -0800 Subject: Disable concurrent change detection Regress on #3360. We have reports of Bazel outputting warnings for generated files, which I have been able to reproduce. Apparently, Bazel gets stuck with an old FileContentsProxy for generated files, and is unable to recover. PiperOrigin-RevId: 182772324 --- src/main/java/com/google/devtools/build/lib/remote/RemoteOptions.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/java/com/google/devtools') 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 21ab0a5d0b..b60241d5c7 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 @@ -214,7 +214,7 @@ public final class RemoteOptions extends OptionsBase { @Option( name = "experimental_guard_against_concurrent_changes", - defaultValue = "true", + defaultValue = "false", category = "remote", documentationCategory = OptionDocumentationCategory.UNCATEGORIZED, effectTags = {OptionEffectTag.UNKNOWN}, -- cgit v1.2.3