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 df01d7b059 Print diagnostics to stderr
df01d7b059 is described below
commit df01d7b0596e4779958b35f89d24101ec148d766
Author: Jarek Potiuk <[email protected]>
AuthorDate: Sat Oct 25 14:55:09 2025 +0200
Print diagnostics to stderr
---
.github/scripts/dump-docs-packages-metadata.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/scripts/dump-docs-packages-metadata.py
b/.github/scripts/dump-docs-packages-metadata.py
index 2e3c0b22a1..fd1f9afd31 100755
--- a/.github/scripts/dump-docs-packages-metadata.py
+++ b/.github/scripts/dump-docs-packages-metadata.py
@@ -30,7 +30,7 @@ import os
bucket = os.environ.get("S3_DOCS_BUCKET", "live-docs-airflow-apache-org")
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}")
+print(f"Fetching package metadata from {package_metadata_url}",
file=sys.stderr)
resp = requests.get(package_metadata_url)
if resp.status_code != 200:
raise RuntimeError(f"Failed to fetch metadata: {resp.status_code} -
{resp.text}")