From df15f48ecc2be0fab96e842fb8873c6db59c9089 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNaeel=E2=80=9D?= Date: Sun, 12 Jul 2026 14:12:43 +0400 Subject: [PATCH] =?UTF-8?q?fix:=20Connection:=20close=20=D0=B2=20after=5Fr?= =?UTF-8?q?equest=20=E2=80=94=20XHR=20=D0=BD=D0=B5=20=D0=B4=D0=B5=D1=80?= =?UTF-8?q?=D0=B6=D0=B0=D1=82=20keep-alive=20=D0=BF=D0=BE=D1=81=D0=BB?= =?UTF-8?q?=D0=B5=20=D0=B7=D0=B0=D0=BF=D1=80=D0=BE=D1=81=D0=BE=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- site/app.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/site/app.py b/site/app.py index 584c382..0f6a569 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 = "4.0.0" +VERSION = "4.0.1" def create_app(): @@ -51,6 +51,7 @@ 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