vatsrahul1001 commented on code in PR #62851: URL: https://github.com/apache/airflow/pull/62851#discussion_r2883389020
########## providers/fab/src/airflow/providers/fab/www/app.py: ########## @@ -46,6 +47,11 @@ app: Flask | None = None +if AIRFLOW_V_3_1_8_PLUS: + from airflow.api_fastapi.app import get_cookie_path +else: + get_cookie_path = lambda: "/" + # Initializes at the module level, so plugins can access it. Review Comment: Thanks removed provider changes. @jason810496 added UI changes in https://github.com/apache/airflow/pull/62859 ########## providers/amazon/src/airflow/providers/amazon/aws/auth_manager/routes/login.py: ########## Review Comment: Removed provider changes -- 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]
