amoghrajesh commented on code in PR #799: URL: https://github.com/apache/airflow-site/pull/799#discussion_r1226308179
########## post-docs/add-back-references.py: ########## @@ -22,14 +22,30 @@ from urllib.request import urlopen import semver +log = logging.getLogger(__name__) + airflow_redirects_link = "https://raw.githubusercontent.com/apache/airflow/main/docs/apache-airflow/redirects.txt" helm_redirects_link = "https://raw.githubusercontent.com/apache/airflow/main/docs/helm-chart/redirects.txt" -providers_redirect_link = "populate-this" docs_archive_path = "../docs-archive" airflow_docs_path = docs_archive_path + "/apache-airflow" helm_docs_path = docs_archive_path + "/helm-chart" -providers_docs_path = docs_archive_path + "/apache-airflow-providers" + +# if any new provider is added with redirects, add it to this list Review Comment: Good idea. Missed that. Yeah I agree with you on this, pushing a fix for that :) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
