This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow-site.git
The following commit(s) were added to refs/heads/main by this push:
new 18f8c8e001 Add a bit diagnostics to package metadata copying
18f8c8e001 is described below
commit 18f8c8e00132452a93bc968d314259695071a414
Author: Jarek Potiuk <[email protected]>
AuthorDate: Sat Oct 25 14:45:23 2025 +0200
Add a bit diagnostics to package metadata copying
---
.github/scripts/dump-docs-packages-metadata.py | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/.github/scripts/dump-docs-packages-metadata.py
b/.github/scripts/dump-docs-packages-metadata.py
index d67cb222be..2e3c0b22a1 100755
--- a/.github/scripts/dump-docs-packages-metadata.py
+++ b/.github/scripts/dump-docs-packages-metadata.py
@@ -29,7 +29,9 @@ import requests
import os
bucket = os.environ.get("S3_DOCS_BUCKET", "live-docs-airflow-apache-org")
-resp =
requests.get(f"https://{bucket}.s3.us-east-2.amazonaws.com/manifest/packages-metadata.json")
+package_metadata_url =
f"https://{bucket}.s3.us-east-2.amazonaws.com/manifest/packages-metadata.json"
+print(f"Fetching package metadata from {package_metadata_url}")
+resp = requests.get(package_metadata_url)
if resp.status_code != 200:
raise RuntimeError(f"Failed to fetch metadata: {resp.status_code} -
{resp.text}")