jason810496 commented on code in PR #62851: URL: https://github.com/apache/airflow/pull/62851#discussion_r2882781315
########## 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: Missing backport here, but it _should_ be fine IMHO. Since the provider will be release in `main` branch. `main`: https://github.com/apache/airflow/blob/43ee8c4/providers/fab/src/airflow/providers/fab/www/views.py#L117-L132 whereas `v3-1-test`: https://github.com/apache/airflow/blob/2f5cdff247b9edaad120b1dc18b864ab7509d772/providers/fab/src/airflow/providers/fab/www/views.py#L58-L83 -- 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]
