This is an automated email from the ASF dual-hosted git repository.
bugraoz pushed a commit to branch v3-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-1-test by this push:
new 08cd79717fc [v3-1-test] Logging action better when cache file download
times out in CI (#61515) (#61520)
08cd79717fc is described below
commit 08cd79717fcd37c69324a14611adb0da71b1b0a6
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Feb 6 19:24:51 2026 +0100
[v3-1-test] Logging action better when cache file download times out in CI
(#61515) (#61520)
(cherry picked from commit 5a414a537876ee8706b6994758db3e70f04098f3)
Co-authored-by: Amogh Desai <[email protected]>
---
.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