abhijeets25012-tech commented on code in PR #64726:
URL: https://github.com/apache/airflow/pull/64726#discussion_r3036369480
##########
providers/fab/src/airflow/providers/fab/www/app.py:
##########
@@ -59,6 +59,13 @@ def create_app(enable_plugins: bool):
from airflow.providers.fab.auth_manager.fab_auth_manager import
FabAuthManager
flask_app = Flask(__name__)
+
+ @flask_app.after_request
+ def remove_duplicate_date_header(response):
+ # Remove duplicate Date header added by Flask (Uvicorn already sets it)
+ response.headers.pop("Date", None)
+ response.headers.pop("date", None)
Review Comment:
HTTP headers are technically case-insensitive, but Flask/Werkzeug may store
them in either case depending on how they were set. Checking both ensures
removal of all duplicates safely.
--
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]