From e8ed05b9e8db539b19d2d1493dcd9ba50cae6b03 Mon Sep 17 00:00:00 2001 From: Stu Hood Date: Wed, 7 Dec 2022 12:35:39 -0800 Subject: [PATCH] Disable lazy fetch in pantsbuild CI (#17741) Pantsbuild CI experiences #16667 fairly frequently (where a long running job hits an authentication error), and until we have resolved that issue, we don't want to continue subject contributors to flaky failures. --- pants.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pants.toml b/pants.toml index 11948ec5551..47de44b4b87 100644 --- a/pants.toml +++ b/pants.toml @@ -70,10 +70,10 @@ build_ignore.add = [ unmatched_build_file_globs = "error" -# TODO: May cause tests which experience missing digests to hang. If you experience an -# issue, please change this to `fetch` and then report an issue on: +# TODO: We would like to be able to use `validate` or `defer` here, but further hardening of +# network codepaths is needed. See: # https://github.com/pantsbuild/pants/issues/16096. -cache_content_behavior = "validate" +cache_content_behavior = "fetch" [anonymous-telemetry] enabled = true