This is an automated email from the ASF dual-hosted git repository.

amoghdesai pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 5a414a53787 Logging action better when cache file download times out 
in CI (#61515)
5a414a53787 is described below

commit 5a414a537876ee8706b6994758db3e70f04098f3
Author: Amogh Desai <[email protected]>
AuthorDate: Fri Feb 6 15:26:10 2026 +0530

    Logging action better when cache file download times out in CI (#61515)
---
 .github/workflows/ci-image-build.yml | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/ci-image-build.yml 
b/.github/workflows/ci-image-build.yml
index 1acb191d21b..fde667a8d2d 100644
--- a/.github/workflows/ci-image-build.yml
+++ b/.github/workflows/ci-image-build.yml
@@ -139,8 +139,9 @@ jobs:
           CACHE_FILE: "/tmp/ci-cache-mount-save-v3-${{ 
env.PYTHON_MAJOR_MINOR_VERSION }}.tar.gz"
         run: |
           if [ ! -f "$CACHE_FILE" ]; then
-            echo "Cache file not found:"
-            echo "$CACHE_FILE"
+            echo "Cache file not found: $CACHE_FILE"
+            echo "Stash restore may have timed out. Check the 'Restore 
ci-cache mount' step"
+            echo "for download errors. Re-run the job to retry."
             exit 1
           fi
         shell: bash

Reply via email to