shivaam commented on code in PR #64726:
URL: https://github.com/apache/airflow/pull/64726#discussion_r3036313345
##########
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:
Curious, why do we need both 'Date' and 'date' ?
nit; Also del might be better than pop as it will remove all headers
matching the key.
--
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]