From 73003e7a33001c29337f9bc24455c9ad5f4efd1e Mon Sep 17 00:00:00 2001 From: Robby Cochran Date: Thu, 17 Sep 2026 10:24:14 -0700 Subject: [PATCH] fix(acs-ci): bound GCS preflight request --- tasks/acs-ci-nightly/workflow/preflight.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/acs-ci-nightly/workflow/preflight.yaml b/tasks/acs-ci-nightly/workflow/preflight.yaml index 3d01aaa..ccb8bc7 100644 --- a/tasks/acs-ci-nightly/workflow/preflight.yaml +++ b/tasks/acs-ci-nightly/workflow/preflight.yaml @@ -32,8 +32,8 @@ agent: echo "Jira URL: $JIRA_URL" echo - echo "GCS: gsutil ls gs://$GCS_BUCKET/logs/" - if /opt/gsutil/bin/gsutil ls "gs://$GCS_BUCKET/logs/" >/dev/null 2>"$gcs_error"; then + echo "GCS: gsutil ls -b gs://$GCS_BUCKET" + if /opt/gsutil/bin/gsutil ls -b "gs://$GCS_BUCKET" >/dev/null 2>"$gcs_error"; then echo "GCS: PASS" else gcs_status=$?