potiuk commented on a change in pull request #12082: URL: https://github.com/apache/airflow/pull/12082#discussion_r518723761
########## File path: airflow/api_connexion/exceptions.py ########## @@ -21,9 +21,10 @@ from airflow import version -doc_link = f'https://airflow.apache.org/docs/{version.version}/stable-rest-api-ref.html' -if 'dev' in version.version: +if any(suffix in version.version for suffix in ['dev', 'a', 'b']): Review comment: This caused doc building to not produce latest docs in a/b cases. And for whatever reason in my build, it caused 'duplicate link' problem ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected]
