fix: Connection: close на всех ответах — nginx не кэширует upstream keepalive
Deploy drhider / validate (push) Waiting to run

This commit is contained in:
2026-07-14 13:21:31 +04:00
parent 0ceaee1089
commit 6fe1ba2b42
2 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -93,7 +93,7 @@ def process_stream(sid):
return Response(
stream_with_context(generate()),
content_type="text/event-stream",
headers={"Cache-Control": "no-cache", "X-Accel-Buffering": "no"}
headers={"Cache-Control": "no-cache", "X-Accel-Buffering": "no", "Connection": "close"}
)