fix: убран Connection: close — каждый статик-файл требовал новый TCP handshake
Deploy drhider / validate (push) Waiting to run

This commit is contained in:
2026-07-12 14:55:16 +04:00
parent 3ba201748c
commit ee42865fcd
+1 -2
View File
@@ -20,7 +20,7 @@ if _sys_path_root not in sys.path:
sys.path.insert(0, _sys_path_root)
# Версия приложения (меняется при изменениях)
VERSION = "5.0.5"
VERSION = "5.0.6"
def create_app():
@@ -51,7 +51,6 @@ def create_app():
response.headers["Cache-Control"] = "no-cache, no-store, must-revalidate"
response.headers["Pragma"] = "no-cache"
response.headers["Expires"] = "0"
response.headers["Connection"] = "close"
return response
return app