From ee42865fcd8571bb88fd204df82d1c288508efd0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNaeel=E2=80=9D?= Date: Sun, 12 Jul 2026 14:55:16 +0400 Subject: [PATCH] =?UTF-8?q?fix:=20=D1=83=D0=B1=D1=80=D0=B0=D0=BD=20Connect?= =?UTF-8?q?ion:=20close=20=E2=80=94=20=D0=BA=D0=B0=D0=B6=D0=B4=D1=8B=D0=B9?= =?UTF-8?q?=20=D1=81=D1=82=D0=B0=D1=82=D0=B8=D0=BA-=D1=84=D0=B0=D0=B9?= =?UTF-8?q?=D0=BB=20=D1=82=D1=80=D0=B5=D0=B1=D0=BE=D0=B2=D0=B0=D0=BB=20?= =?UTF-8?q?=D0=BD=D0=BE=D0=B2=D1=8B=D0=B9=20TCP=20handshake?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- site/app.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/site/app.py b/site/app.py index c8ac48c..800affb 100644 --- a/site/app.py +++ b/site/app.py @@ -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