From 8921c07646c2aeed598b8f9915c8c6a54ceb0995 Mon Sep 17 00:00:00 2001 From: Konstantin Goncharik Date: Sat, 6 Jun 2026 21:49:06 +0700 Subject: [PATCH 1/2] userver: optimize async-db handler --- .../userver_benchmark/configs/static_config.yaml | 7 ++++--- .../src/handlers/async_db/handler.cpp | 14 ++++++-------- 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/frameworks/userver/userver_benchmark/configs/static_config.yaml b/frameworks/userver/userver_benchmark/configs/static_config.yaml index ef77dd03..b02d9c6e 100644 --- a/frameworks/userver/userver_benchmark/configs/static_config.yaml +++ b/frameworks/userver/userver_benchmark/configs/static_config.yaml @@ -121,12 +121,13 @@ components_manager: hello-world-db: dbconnection#env: DATABASE_URL # HttpArena benchmark env dbconnection#fallback: postgresql://bench:bench@localhost:5432/benchmark?sslmode=disable # local dev - min_pool_size: 64 + min_pool_size#env: DATABASE_MAX_CONN # pre-warm all connections at startup + min_pool_size#fallback: 256 # local dev max_pool_size#env: DATABASE_MAX_CONN # HttpArena benchmark env (set to 256) max_pool_size#fallback: 256 # local dev # min == max: pre-warm all connections at startup for benchmark blocking_task_processor: fs-task-processor - max_queue_size: 512 - connecting_limit: 15 + max_queue_size: 4096 + connecting_limit: 256 ignore_unused_query_params: true connlimit_mode: manual diff --git a/frameworks/userver/userver_benchmark/src/handlers/async_db/handler.cpp b/frameworks/userver/userver_benchmark/src/handlers/async_db/handler.cpp index 2f00e6e6..fdd22821 100644 --- a/frameworks/userver/userver_benchmark/src/handlers/async_db/handler.cpp +++ b/frameworks/userver/userver_benchmark/src/handlers/async_db/handler.cpp @@ -10,15 +10,14 @@ #include #include #include -#include #include namespace userver_httparena::async_db { namespace { struct ItemRow { int64_t id; - std::string name; - std::string category; + std::string_view name; + std::string_view category; int64_t price; int64_t quantity; bool active; @@ -48,24 +47,23 @@ std::string Handler::HandleRequestThrow(const userver::server::http::HttpRequest // Matches // https://www.http-arena.com/docs/test-profiles/h1/isolated/async-database/implementation/ - // kSlave falls back to master if no read replica is available - auto res = pg_->Execute(userver::storages::postgres::ClusterHostType::kSlave, + auto res = pg_->Execute(userver::storages::postgres::ClusterHostType::kSlaveOrMaster, "SELECT id, name, category, price, quantity, active, tags, " "rating_score, rating_count FROM items " "WHERE price BETWEEN $1 AND $2 LIMIT $3", min, max, limit); - const auto rows = res.AsContainer >(userver::storages::postgres::kRowTag); + auto items = res.AsSetOf(userver::storages::postgres::kRowTag); userver::formats::json::StringBuilder sb; { userver::formats::json::StringBuilder::ObjectGuard root_guard(sb); sb.Key("count"); - sb.WriteInt64(static_cast(rows.size())); + sb.WriteInt64(static_cast(items.Size())); sb.Key("items"); { userver::formats::json::StringBuilder::ArrayGuard items_guard(sb); - for (const auto& row : rows) { + for (const auto& row : items) { userver::formats::json::StringBuilder::ObjectGuard item_guard(sb); sb.Key("id"); sb.WriteInt64(row.id); From ba627fd0ea6579cd489acabde87c865157553a33 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 6 Jun 2026 17:24:47 +0000 Subject: [PATCH 2/2] Benchmark results: userver --- site/data/api-16-1024.json | 26 + site/data/api-4-256.json | 26 + site/data/async-db-1024.json | 20 + site/data/baseline-4096.json | 16 +- site/data/baseline-512.json | 16 +- site/data/json-4096.json | 20 + site/data/json-comp-16384.json | 20 + site/data/json-comp-4096.json | 20 + site/data/json-comp-512.json | 20 + site/data/limited-conn-4096.json | 18 +- site/data/limited-conn-512.json | 16 +- site/data/pipelined-4096.json | 14 +- site/data/pipelined-512.json | 14 +- site/data/static-1024.json | 14 +- site/data/static-4096.json | 14 +- site/data/static-6800.json | 14 +- site/data/upload-256.json | 20 + site/data/upload-32.json | 20 + site/static/logs/api-16/1024/userver.log | 0 site/static/logs/api-4/256/userver.log | 0 site/static/logs/async-db/1024/userver.log | 0 site/static/logs/baseline/4096/userver.log | 80 - site/static/logs/baseline/512/userver.log | 80 - site/static/logs/json-comp/16384/userver.log | 0 site/static/logs/json-comp/4096/userver.log | 0 site/static/logs/json-comp/512/userver.log | 0 site/static/logs/json/4096/userver.log | 0 .../static/logs/limited-conn/4096/userver.log | 80 - site/static/logs/limited-conn/512/userver.log | 80 - site/static/logs/pipelined/4096/userver.log | 7273 +++++++++-------- site/static/logs/pipelined/512/userver.log | 128 +- site/static/logs/static/1024/userver.log | 80 - site/static/logs/static/4096/userver.log | 80 - site/static/logs/static/6800/userver.log | 80 - site/static/logs/upload/256/userver.log | 0 site/static/logs/upload/32/userver.log | 0 36 files changed, 4238 insertions(+), 4051 deletions(-) create mode 100644 site/static/logs/api-16/1024/userver.log create mode 100644 site/static/logs/api-4/256/userver.log create mode 100644 site/static/logs/async-db/1024/userver.log create mode 100644 site/static/logs/json-comp/16384/userver.log create mode 100644 site/static/logs/json-comp/4096/userver.log create mode 100644 site/static/logs/json-comp/512/userver.log create mode 100644 site/static/logs/json/4096/userver.log create mode 100644 site/static/logs/upload/256/userver.log create mode 100644 site/static/logs/upload/32/userver.log diff --git a/site/data/api-16-1024.json b/site/data/api-16-1024.json index f5775ef4..d30fbdbb 100644 --- a/site/data/api-16-1024.json +++ b/site/data/api-16-1024.json @@ -1241,6 +1241,32 @@ "tpl_static": 0, "tpl_async_db": 572974 }, + { + "framework": "userver", + "language": "C++", + "rps": 137828, + "avg_latency": "6.86ms", + "p99_latency": "35.00ms", + "cpu": "1779.9%", + "memory": "373MiB", + "connections": 1024, + "threads": 64, + "duration": "5s", + "pipeline": 1, + "bandwidth": "411.95MB/s", + "input_bw": "7.76MB/s", + "reconnects": 413290, + "status_2xx": 2067430, + "status_3xx": 0, + "status_4xx": 0, + "status_5xx": 0, + "tpl_baseline": 774549, + "tpl_json": 776048, + "tpl_db": 0, + "tpl_upload": 0, + "tpl_static": 0, + "tpl_async_db": 516832 + }, { "framework": "uvicorn", "language": "Python", diff --git a/site/data/api-4-256.json b/site/data/api-4-256.json index e82bb096..bf1cfec9 100644 --- a/site/data/api-4-256.json +++ b/site/data/api-4-256.json @@ -1241,6 +1241,32 @@ "tpl_static": 0, "tpl_async_db": 210990 }, + { + "framework": "userver", + "language": "C++", + "rps": 59270, + "avg_latency": "3.79ms", + "p99_latency": "29.50ms", + "cpu": "403.6%", + "memory": "203MiB", + "connections": 256, + "threads": 64, + "duration": "5s", + "pipeline": 1, + "bandwidth": "177.10MB/s", + "input_bw": "3.33MB/s", + "reconnects": 177804, + "status_2xx": 889058, + "status_3xx": 0, + "status_4xx": 0, + "status_5xx": 0, + "tpl_baseline": 333335, + "tpl_json": 333509, + "tpl_db": 0, + "tpl_upload": 0, + "tpl_static": 0, + "tpl_async_db": 222213 + }, { "framework": "uvicorn", "language": "Python", diff --git a/site/data/async-db-1024.json b/site/data/async-db-1024.json index eac54a3e..99bfb094 100644 --- a/site/data/async-db-1024.json +++ b/site/data/async-db-1024.json @@ -993,6 +993,26 @@ "status_4xx": 0, "status_5xx": 0 }, + { + "framework": "userver", + "language": "C++", + "rps": 236485, + "avg_latency": "3.75ms", + "p99_latency": "11.00ms", + "cpu": "5559.7%", + "memory": "300MiB", + "connections": 1024, + "threads": 64, + "duration": "5s", + "pipeline": 1, + "bandwidth": "912.03MB/s", + "input_bw": "15.79MB/s", + "reconnects": 94584, + "status_2xx": 2364854, + "status_3xx": 0, + "status_4xx": 0, + "status_5xx": 0 + }, { "framework": "uvicorn", "language": "Python", diff --git a/site/data/baseline-4096.json b/site/data/baseline-4096.json index 5738d0b1..e3d06634 100644 --- a/site/data/baseline-4096.json +++ b/site/data/baseline-4096.json @@ -1428,19 +1428,19 @@ { "framework": "userver", "language": "C++", - "rps": 978241, - "avg_latency": "4.19ms", - "p99_latency": "13.40ms", - "cpu": "6153.4%", - "memory": "445MiB", + "rps": 1053894, + "avg_latency": "3.89ms", + "p99_latency": "9.33ms", + "cpu": "6401.3%", + "memory": "411MiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "134.31MB/s", - "input_bw": "75.57MB/s", + "bandwidth": "144.70MB/s", + "input_bw": "81.41MB/s", "reconnects": 0, - "status_2xx": 4891208, + "status_2xx": 5269470, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 diff --git a/site/data/baseline-512.json b/site/data/baseline-512.json index 663af5b8..0981f5c5 100644 --- a/site/data/baseline-512.json +++ b/site/data/baseline-512.json @@ -1428,19 +1428,19 @@ { "framework": "userver", "language": "C++", - "rps": 602547, - "avg_latency": "852us", - "p99_latency": "3.42ms", - "cpu": "6004.9%", - "memory": "199MiB", + "rps": 882230, + "avg_latency": "579us", + "p99_latency": "3.55ms", + "cpu": "6417.0%", + "memory": "220MiB", "connections": 512, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "82.73MB/s", - "input_bw": "46.55MB/s", + "bandwidth": "121.13MB/s", + "input_bw": "68.15MB/s", "reconnects": 0, - "status_2xx": 3012738, + "status_2xx": 4411153, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 diff --git a/site/data/json-4096.json b/site/data/json-4096.json index c1d32fd1..6b76432f 100644 --- a/site/data/json-4096.json +++ b/site/data/json-4096.json @@ -1133,6 +1133,26 @@ "status_4xx": 0, "status_5xx": 0 }, + { + "framework": "userver", + "language": "C++", + "rps": 824264, + "avg_latency": "4.90ms", + "p99_latency": "11.50ms", + "cpu": "6336.2%", + "memory": "532MiB", + "connections": 4096, + "threads": 64, + "duration": "5s", + "pipeline": 1, + "bandwidth": "974.43MB/s", + "input_bw": "39.30MB/s", + "reconnects": 163267, + "status_2xx": 4121324, + "status_3xx": 0, + "status_4xx": 0, + "status_5xx": 0 + }, { "framework": "uvicorn", "language": "Python", diff --git a/site/data/json-comp-16384.json b/site/data/json-comp-16384.json index 3f84f680..7eaf583a 100644 --- a/site/data/json-comp-16384.json +++ b/site/data/json-comp-16384.json @@ -959,6 +959,26 @@ "status_4xx": 0, "status_5xx": 0 }, + { + "framework": "userver", + "language": "C++", + "rps": 485067, + "avg_latency": "32.61ms", + "p99_latency": "122.40ms", + "cpu": "6493.6%", + "memory": "1.5GiB", + "connections": 16384, + "threads": 64, + "duration": "5s", + "pipeline": 1, + "bandwidth": "309.53MB/s", + "input_bw": "36.08MB/s", + "reconnects": 89322, + "status_2xx": 2425337, + "status_3xx": 0, + "status_4xx": 0, + "status_5xx": 0 + }, { "framework": "uvicorn", "language": "Python", diff --git a/site/data/json-comp-4096.json b/site/data/json-comp-4096.json index 7a5d2b98..967e2c6b 100644 --- a/site/data/json-comp-4096.json +++ b/site/data/json-comp-4096.json @@ -959,6 +959,26 @@ "status_4xx": 0, "status_5xx": 0 }, + { + "framework": "userver", + "language": "C++", + "rps": 495304, + "avg_latency": "8.23ms", + "p99_latency": "17.50ms", + "cpu": "6370.6%", + "memory": "556MiB", + "connections": 4096, + "threads": 64, + "duration": "5s", + "pipeline": 1, + "bandwidth": "316.07MB/s", + "input_bw": "36.84MB/s", + "reconnects": 97245, + "status_2xx": 2476520, + "status_3xx": 0, + "status_4xx": 0, + "status_5xx": 0 + }, { "framework": "uvicorn", "language": "Python", diff --git a/site/data/json-comp-512.json b/site/data/json-comp-512.json index 6fd34501..3d6e91b8 100644 --- a/site/data/json-comp-512.json +++ b/site/data/json-comp-512.json @@ -959,6 +959,26 @@ "status_4xx": 0, "status_5xx": 0 }, + { + "framework": "userver", + "language": "C++", + "rps": 495502, + "avg_latency": "1.02ms", + "p99_latency": "4.19ms", + "cpu": "6541.9%", + "memory": "248MiB", + "connections": 512, + "threads": 64, + "duration": "5s", + "pipeline": 1, + "bandwidth": "316.20MB/s", + "input_bw": "36.86MB/s", + "reconnects": 99102, + "status_2xx": 2477512, + "status_3xx": 0, + "status_4xx": 0, + "status_5xx": 0 + }, { "framework": "uvicorn", "language": "Python", diff --git a/site/data/limited-conn-4096.json b/site/data/limited-conn-4096.json index d91fc60a..94efb2ef 100644 --- a/site/data/limited-conn-4096.json +++ b/site/data/limited-conn-4096.json @@ -1428,19 +1428,19 @@ { "framework": "userver", "language": "C++", - "rps": 850039, - "avg_latency": "4.81ms", - "p99_latency": "15.50ms", - "cpu": "6090.8%", - "memory": "578MiB", + "rps": 886892, + "avg_latency": "4.63ms", + "p99_latency": "12.90ms", + "cpu": "6261.2%", + "memory": "603MiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "116.69MB/s", - "input_bw": "65.66MB/s", - "reconnects": 423697, - "status_2xx": 4250195, + "bandwidth": "121.75MB/s", + "input_bw": "68.51MB/s", + "reconnects": 441759, + "status_2xx": 4434464, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 diff --git a/site/data/limited-conn-512.json b/site/data/limited-conn-512.json index bf0e1b93..068581e5 100644 --- a/site/data/limited-conn-512.json +++ b/site/data/limited-conn-512.json @@ -1428,19 +1428,19 @@ { "framework": "userver", "language": "C++", - "rps": 701718, - "avg_latency": "720us", + "rps": 736506, + "avg_latency": "686us", "p99_latency": "3.98ms", - "cpu": "5875.4%", - "memory": "240MiB", + "cpu": "6086.3%", + "memory": "246MiB", "connections": 512, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "96.34MB/s", - "input_bw": "54.21MB/s", - "reconnects": 350772, - "status_2xx": 3508594, + "bandwidth": "101.12MB/s", + "input_bw": "56.89MB/s", + "reconnects": 368248, + "status_2xx": 3682530, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 diff --git a/site/data/pipelined-4096.json b/site/data/pipelined-4096.json index b9260034..d4e49194 100644 --- a/site/data/pipelined-4096.json +++ b/site/data/pipelined-4096.json @@ -1353,18 +1353,18 @@ { "framework": "userver", "language": "C++", - "rps": 1341176, - "avg_latency": "48.74ms", - "p99_latency": "65.10ms", - "cpu": "6578.2%", - "memory": "898MiB", + "rps": 1340775, + "avg_latency": "48.81ms", + "p99_latency": "64.90ms", + "cpu": "6741.3%", + "memory": "879MiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 16, - "bandwidth": "184.13MB/s", + "bandwidth": "184.08MB/s", "reconnects": 0, - "status_2xx": 6705883, + "status_2xx": 6703879, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 diff --git a/site/data/pipelined-512.json b/site/data/pipelined-512.json index cb4d3983..2e173de1 100644 --- a/site/data/pipelined-512.json +++ b/site/data/pipelined-512.json @@ -1353,18 +1353,18 @@ { "framework": "userver", "language": "C++", - "rps": 1450332, - "avg_latency": "5.66ms", - "p99_latency": "9.20ms", - "cpu": "6642.5%", - "memory": "261MiB", + "rps": 1401012, + "avg_latency": "5.85ms", + "p99_latency": "9.47ms", + "cpu": "6699.8%", + "memory": "264MiB", "connections": 512, "threads": 64, "duration": "5s", "pipeline": 16, - "bandwidth": "199.12MB/s", + "bandwidth": "192.35MB/s", "reconnects": 0, - "status_2xx": 7251661, + "status_2xx": 7005064, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 diff --git a/site/data/static-1024.json b/site/data/static-1024.json index 31975418..723fd028 100644 --- a/site/data/static-1024.json +++ b/site/data/static-1024.json @@ -1157,18 +1157,18 @@ { "framework": "userver", "language": "C++", - "rps": 165314, - "avg_latency": "6.21ms", - "p99_latency": "6.21ms", - "cpu": "6593.7%", - "memory": "438MiB", + "rps": 162632, + "avg_latency": "6.32ms", + "p99_latency": "6.32ms", + "cpu": "6483.9%", + "memory": "432MiB", "connections": 1024, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "9.82GB", + "bandwidth": "9.66GB", "reconnects": 0, - "status_2xx": 843129, + "status_2xx": 829335, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 diff --git a/site/data/static-4096.json b/site/data/static-4096.json index ab0a4f61..aa5524c1 100644 --- a/site/data/static-4096.json +++ b/site/data/static-4096.json @@ -1157,18 +1157,18 @@ { "framework": "userver", "language": "C++", - "rps": 188463, - "avg_latency": "21.77ms", - "p99_latency": "21.77ms", - "cpu": "6563.2%", - "memory": "931MiB", + "rps": 184559, + "avg_latency": "22.27ms", + "p99_latency": "22.27ms", + "cpu": "6428.2%", + "memory": "930MiB", "connections": 4096, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "11.20GB", + "bandwidth": "10.96GB", "reconnects": 0, - "status_2xx": 961180, + "status_2xx": 941289, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 diff --git a/site/data/static-6800.json b/site/data/static-6800.json index 78126d2e..73104c24 100644 --- a/site/data/static-6800.json +++ b/site/data/static-6800.json @@ -1157,18 +1157,18 @@ { "framework": "userver", "language": "C++", - "rps": 194260, - "avg_latency": "35.98ms", - "p99_latency": "35.98ms", - "cpu": "6569.8%", - "memory": "1.3GiB", + "rps": 195761, + "avg_latency": "35.83ms", + "p99_latency": "35.83ms", + "cpu": "6559.4%", + "memory": "1.4GiB", "connections": 6800, "threads": 64, "duration": "5s", "pipeline": 1, - "bandwidth": "11.54GB", + "bandwidth": "11.63GB", "reconnects": 0, - "status_2xx": 990853, + "status_2xx": 998477, "status_3xx": 0, "status_4xx": 0, "status_5xx": 0 diff --git a/site/data/upload-256.json b/site/data/upload-256.json index f2d3b452..e062b468 100644 --- a/site/data/upload-256.json +++ b/site/data/upload-256.json @@ -1078,6 +1078,26 @@ "status_4xx": 0, "status_5xx": 0 }, + { + "framework": "userver", + "language": "C++", + "rps": 638, + "avg_latency": "370.89ms", + "p99_latency": "1.10s", + "cpu": "6507.4%", + "memory": "3.9GiB", + "connections": 256, + "threads": 64, + "duration": "5s", + "pipeline": 1, + "bandwidth": "93.17KB/s", + "input_bw": "5.06GB/s", + "reconnects": 564, + "status_2xx": 3198, + "status_3xx": 0, + "status_4xx": 0, + "status_5xx": 0 + }, { "framework": "uvicorn", "language": "Python", diff --git a/site/data/upload-32.json b/site/data/upload-32.json index 61197dd1..62d0402d 100644 --- a/site/data/upload-32.json +++ b/site/data/upload-32.json @@ -1078,6 +1078,26 @@ "status_4xx": 0, "status_5xx": 0 }, + { + "framework": "userver", + "language": "C++", + "rps": 704, + "avg_latency": "45.32ms", + "p99_latency": "124.30ms", + "cpu": "3222.5%", + "memory": "1.1GiB", + "connections": 32, + "threads": 64, + "duration": "5s", + "pipeline": 1, + "bandwidth": "102.65KB/s", + "input_bw": "5.58GB/s", + "reconnects": 688, + "status_2xx": 3522, + "status_3xx": 0, + "status_4xx": 0, + "status_5xx": 0 + }, { "framework": "uvicorn", "language": "Python", diff --git a/site/static/logs/api-16/1024/userver.log b/site/static/logs/api-16/1024/userver.log new file mode 100644 index 00000000..e69de29b diff --git a/site/static/logs/api-4/256/userver.log b/site/static/logs/api-4/256/userver.log new file mode 100644 index 00000000..e69de29b diff --git a/site/static/logs/async-db/1024/userver.log b/site/static/logs/async-db/1024/userver.log new file mode 100644 index 00000000..e69de29b diff --git a/site/static/logs/baseline/4096/userver.log b/site/static/logs/baseline/4096/userver.log index f5039557..e69de29b 100644 --- a/site/static/logs/baseline/4096/userver.log +++ b/site/static/logs/baseline/4096/userver.log @@ -1,80 +0,0 @@ -tskv timestamp=2026-04-27T10:17:53.228265 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.228372 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.228372 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.228373 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.228374 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.228374 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.228375 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.228376 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.228376 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.228377 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.228378 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.228378 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.228379 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.228379 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.228380 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.229098 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.229116 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.229338 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.229354 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.229385 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.229388 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.230191 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.230205 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.230206 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.230207 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.230207 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.230208 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.230208 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.230209 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.230210 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.230210 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.230211 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.230351 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.230372 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.230524 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.230534 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.230535 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.230844 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.230855 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.230856 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.230857 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.230858 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.230859 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.230943 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.230950 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.230951 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.230952 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.231285 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.231296 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.231608 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.231612 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.231741 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.231749 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.231750 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.231886 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.231893 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.231894 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.232324 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.232471 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.232474 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.232475 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.232476 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.232488 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.232582 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.232587 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.232750 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.232756 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.233126 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.233140 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.233142 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.233142 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.233143 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.233144 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.233146 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.233147 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.233148 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.233149 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.233149 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.233171 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:53.233178 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server diff --git a/site/static/logs/baseline/512/userver.log b/site/static/logs/baseline/512/userver.log index e3d185fd..e69de29b 100644 --- a/site/static/logs/baseline/512/userver.log +++ b/site/static/logs/baseline/512/userver.log @@ -1,80 +0,0 @@ -tskv timestamp=2026-04-27T10:17:24.651547 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654214 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654214 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654215 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654216 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654217 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654218 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654219 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654219 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654220 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654221 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654221 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654222 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654222 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654223 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654223 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654224 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654224 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654227 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654228 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654228 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654229 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654229 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654230 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654230 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654231 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654231 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654232 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654232 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654233 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654233 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654234 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654235 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654235 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654236 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654236 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654239 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654239 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654716 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654725 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654725 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654726 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654727 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654728 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654728 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654729 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.654931 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.655139 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.655146 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.655147 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.655281 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.655287 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.655287 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.655551 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.655772 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.655778 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.655780 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.655781 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.655781 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.655782 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.655937 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.655943 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.655943 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.655944 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.656179 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.656425 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.656437 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.656438 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.656439 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.656565 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.656567 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.656568 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.656569 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.656570 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.656570 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.656585 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.656592 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.656642 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.656645 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:17:24.656646 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server diff --git a/site/static/logs/json-comp/16384/userver.log b/site/static/logs/json-comp/16384/userver.log new file mode 100644 index 00000000..e69de29b diff --git a/site/static/logs/json-comp/4096/userver.log b/site/static/logs/json-comp/4096/userver.log new file mode 100644 index 00000000..e69de29b diff --git a/site/static/logs/json-comp/512/userver.log b/site/static/logs/json-comp/512/userver.log new file mode 100644 index 00000000..e69de29b diff --git a/site/static/logs/json/4096/userver.log b/site/static/logs/json/4096/userver.log new file mode 100644 index 00000000..e69de29b diff --git a/site/static/logs/limited-conn/4096/userver.log b/site/static/logs/limited-conn/4096/userver.log index cda9d3cb..e69de29b 100644 --- a/site/static/logs/limited-conn/4096/userver.log +++ b/site/static/logs/limited-conn/4096/userver.log @@ -1,80 +0,0 @@ -tskv timestamp=2026-04-27T10:19:47.770316 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.770475 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.770476 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.770488 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.770489 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.770491 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.770491 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.770493 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.770494 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.770495 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.770498 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.770499 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.770500 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.770770 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.770778 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.770946 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.771694 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.771818 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.771828 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.771830 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.772508 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.772512 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.772513 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.772513 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.772658 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.772669 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.772671 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.772671 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.772672 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.772673 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.772674 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.772796 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.772802 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.772803 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.772859 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.772869 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.772870 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.772871 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.772872 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.772873 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.773245 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.773251 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.773252 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.773253 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.774048 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.774055 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.774056 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.774057 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.774057 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.774393 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.774399 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.774400 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.774400 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.774401 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.774401 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.774402 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.774547 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.774554 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.774555 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.774555 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.775021 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.775027 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.775028 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.775029 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.775030 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.775031 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.775031 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.775032 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.775518 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.775606 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.775612 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.775613 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.775614 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.775615 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.775615 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.775616 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.775617 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.775617 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.775618 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:47.775618 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server diff --git a/site/static/logs/limited-conn/512/userver.log b/site/static/logs/limited-conn/512/userver.log index 83943d47..e69de29b 100644 --- a/site/static/logs/limited-conn/512/userver.log +++ b/site/static/logs/limited-conn/512/userver.log @@ -1,80 +0,0 @@ -tskv timestamp=2026-04-27T10:19:19.153638 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.153771 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.153821 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.153954 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.153964 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.153965 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.153965 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.153966 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.153967 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.153967 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.153968 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.153968 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.153969 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.153970 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.153971 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.153971 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.154075 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.154103 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.154999 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.155005 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.155006 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.155007 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.155008 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.155008 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.155009 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.155234 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.155244 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.155245 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.155246 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.155246 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.155599 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.155603 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.155603 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.155604 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.155604 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.155605 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.156203 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.156211 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.156847 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.156854 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.156855 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.156856 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.156857 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.156894 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.156900 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.156900 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.156901 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.156902 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.156902 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.156903 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.156904 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.156904 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.156905 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.156905 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.156906 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.156907 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.157051 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.157132 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.157238 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.157244 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.157737 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.157777 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.158007 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.158018 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.158019 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.158332 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.158339 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.158340 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.158341 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.158342 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.158343 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.158343 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.158344 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.158344 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.158364 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.158390 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.158772 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.158779 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.158779 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:19:19.158780 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server diff --git a/site/static/logs/pipelined/4096/userver.log b/site/static/logs/pipelined/4096/userver.log index df436536..96320afa 100644 --- a/site/static/logs/pipelined/4096/userver.log +++ b/site/static/logs/pipelined/4096/userver.log @@ -1,3315 +1,3958 @@ -tskv timestamp=2026-04-27T10:18:50.462101 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.462223 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.462224 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.462274 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.462291 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.462294 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.462297 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.462298 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.462299 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.462301 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.462301 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.462304 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.462305 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.462306 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.462306 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.463598 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.464140 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.464153 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.464155 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.464156 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.464156 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.464157 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.464159 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.464159 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.464161 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.464161 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.464163 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.464164 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.464165 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.464166 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.464225 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.464231 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.464383 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.464400 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.464728 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.464734 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.464735 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.465003 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.465010 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.465011 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.465012 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.465013 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.465013 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.465014 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.465721 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.465729 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.465730 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.465730 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.465786 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.465792 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.465809 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.465819 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.465820 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.465866 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.465868 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.466557 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.466583 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.466654 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.466661 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.466662 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.466836 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.466843 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.466844 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.466844 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.466846 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.466847 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.466847 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.467376 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.467395 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.467396 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.467397 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.467398 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.467398 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.467399 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.467399 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.467400 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.467401 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.467401 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.467402 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:50.467402 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:56.371870 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38168, fd=725 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.372034 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56826, fd=2983 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.372046 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60780, fd=3171 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.372242 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48740, fd=2177 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.372358 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41786, fd=1757 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.373006 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31468, fd=66 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.373313 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47718, fd=2019 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.373339 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46548, fd=1958 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.373347 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35512, fd=756 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.373588 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45506, fd=1316 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.373625 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46270, fd=1954 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.373731 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31362, fd=50 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.373840 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44456, fd=1636 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.374195 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50310, fd=2725 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.374276 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41572, fd=1073 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.374285 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52538, fd=2429 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.374295 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31044, fd=44 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.374310 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53126, fd=2402 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.374333 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35036, fd=461 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.374375 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51886, fd=2329 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.374380 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33958, fd=344 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.374459 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39428, fd=1243 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.374528 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37742, fd=996 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.374568 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34446, fd=495 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.374683 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40460, fd=1057 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.374792 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43106, fd=1584 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.374817 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42290, fd=1090 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.374857 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37474, fd=504 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.374865 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31112, fd=48 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.374909 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51308, fd=2844 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.374955 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46770, fd=1833 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.375007 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42570, fd=1406 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.375101 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34910, fd=430 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.375105 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55538, fd=2856 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.375144 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49252, fd=2108 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.375164 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48346, fd=2132 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.375206 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36964, fd=733 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.375252 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36426, fd=559 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.375321 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44618, fd=1247 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.375332 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57942, fd=3176 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.375377 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48834, fd=1679 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.375394 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45738, fd=1704 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.375574 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55086, fd=3650 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.375765 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42092, fd=1113 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.375765 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57418, fd=3864 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.375803 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53582, fd=2457 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.375866 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38426, fd=543 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.375931 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31494, fd=87 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.375940 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36600, fd=741 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.376038 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32092, fd=176 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.376187 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44984, fd=1632 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.376254 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31096, fd=71 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.376336 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37236, fd=653 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.376369 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54542, fd=3105 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.376580 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47256, fd=2059 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.376611 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31752, fd=150 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.376653 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49750, fd=2275 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.376854 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31226, fd=61 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.376858 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35918, fd=351 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.377081 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45150, fd=1796 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.377226 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55380, fd=3682 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.377249 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40978, fd=1690 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.377595 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54032, fd=2733 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.377723 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59206, fd=3351 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.377808 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38552, fd=731 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.377946 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40034, fd=1133 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.377983 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56004, fd=3764 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.377990 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58750, fd=3175 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.378153 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59626, fd=3259 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.378300 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48754, fd=2191 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.378607 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52522, fd=2328 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.378690 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60478, fd=3368 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.378764 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31080, fd=40 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.378802 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31584, fd=142 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.378903 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56510, fd=3825 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.378930 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37588, fd=898 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.378974 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49194, fd=1641 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.379022 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63338, fd=3425 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.379026 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39308, fd=956 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.379087 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57256, fd=2773 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.379170 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54066, fd=3482 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.379173 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36170, fd=835 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.379183 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49250, fd=2579 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.379194 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53572, fd=3006 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.379204 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51916, fd=2440 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.379274 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42892, fd=1223 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.379316 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51350, fd=2331 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.379324 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33942, fd=602 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.379328 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47732, fd=1513 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.379367 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45554, fd=1830 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.379382 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58686, fd=3267 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.379439 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55918, fd=2197 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.379440 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40608, fd=1181 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.379450 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36040, fd=802 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.379464 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31118, fd=52 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.379554 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39590, fd=1299 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.379561 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39718, fd=1010 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.379613 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36642, fd=897 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.379621 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57782, fd=3103 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.379623 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37610, fd=936 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.379633 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47720, fd=2090 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.379637 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53576, fd=2025 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.379662 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41710, fd=867 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.379715 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32516, fd=202 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.379763 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34330, fd=371 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.379766 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38166, fd=1156 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.379801 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56864, fd=2713 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.379853 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42770, fd=1390 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.379908 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32508, fd=118 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.379920 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58094, fd=2886 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.379960 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35408, fd=608 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.379964 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40310, fd=1153 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380004 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39762, fd=1078 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380007 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33436, fd=323 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380027 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44338, fd=1827 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380045 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50230, fd=1752 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380061 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57698, fd=2884 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380062 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46638, fd=1921 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380071 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43398, fd=1514 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380088 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43220, fd=1619 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380091 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55478, fd=2698 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380125 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38028, fd=931 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380143 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56218, fd=3795 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380134 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36546, fd=697 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380159 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45566, fd=1555 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380197 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51362, fd=1839 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380195 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53072, fd=2945 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380231 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48266, fd=2123 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380249 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34830, fd=452 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380295 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49778, fd=2266 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380330 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39080, fd=1222 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380348 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37116, fd=450 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380355 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35486, fd=752 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380387 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41214, fd=958 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380389 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48770, fd=2179 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380533 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33516, fd=330 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380536 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42190, fd=1486 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380599 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32174, fd=173 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380646 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56376, fd=2918 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380678 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31426, fd=82 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380741 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37108, fd=458 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380755 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63062, fd=3484 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380790 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34450, fd=514 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380829 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63618, fd=3474 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380844 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62150, fd=4011 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380879 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46092, fd=1375 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380925 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41326, fd=981 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380965 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32080, fd=230 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380981 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41846, fd=1288 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.380982 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34976, fd=580 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.381015 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31262, fd=60 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.381040 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55044, fd=2496 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.381044 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55174, fd=2143 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.381073 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47164, fd=1936 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.381103 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50884, fd=2223 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.381111 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35218, fd=532 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.381195 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35706, fd=774 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.381278 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63724, fd=3924 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.381289 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50290, fd=2184 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.381335 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46746, fd=2016 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.381352 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54528, fd=3088 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.381365 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63214, fd=3892 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.381458 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51976, fd=2285 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.381541 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47238, fd=1700 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.381568 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31496, fd=147 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.381574 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52972, fd=3338 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.381590 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56722, fd=2797 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.381618 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31170, fd=49 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.381630 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30950, fd=37 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.381653 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54028, fd=2428 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.381666 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60834, fd=3961 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.381704 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59118, fd=3343 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.381715 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38730, fd=1155 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.381720 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50848, fd=1987 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.381729 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55696, fd=2572 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.381751 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61346, fd=3590 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.381881 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47058, fd=2680 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.381920 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48506, fd=2873 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.381925 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54726, fd=3152 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.381939 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62524, fd=3707 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.381999 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32512, fd=334 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.382002 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46160, fd=1388 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.382014 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31016, fd=45 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.382024 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33904, fd=353 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.382089 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41678, fd=1065 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.382120 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57308, fd=3076 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.382181 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59402, fd=3078 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.382180 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53728, fd=2671 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.382237 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31768, fd=112 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.382239 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31482, fd=88 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.382293 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36412, fd=870 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.382299 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33524, fd=302 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.382320 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60074, fd=3618 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.382422 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37550, fd=778 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.382462 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48244, fd=2114 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.382545 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56720, fd=2740 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.382575 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60680, fd=3959 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.382580 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50618, fd=2318 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.382621 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63518, fd=3787 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.382621 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61664, fd=3780 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.382647 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61150, fd=3973 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.382650 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44982, fd=1725 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.382658 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59804, fd=2537 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.382679 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43828, fd=1141 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.382740 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52536, fd=2333 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.382738 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38126, fd=535 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.382748 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31876, fd=98 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.382752 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44548, fd=1602 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.382755 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40820, fd=1452 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.382779 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54606, fd=3565 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.382791 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44946, fd=1755 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.382839 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40076, fd=734 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.383072 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45964, fd=1727 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.383100 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40606, fd=1224 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.383126 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46540, fd=1407 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.383292 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32982, fd=141 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.383300 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32952, fd=287 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.383348 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42232, fd=962 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.383437 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56316, fd=2229 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.383467 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43916, fd=1201 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.383517 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32986, fd=377 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.383674 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42344, fd=1664 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.383698 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37018, fd=928 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.383787 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32086, fd=124 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.383830 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57780, fd=3075 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.383879 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32972, fd=304 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.383951 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45062, fd=1284 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.384002 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43412, fd=1878 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.384139 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44112, fd=1748 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.384154 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51304, fd=3143 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.384159 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44506, fd=1623 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.384171 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54530, fd=2728 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.384181 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58378, fd=3510 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.384194 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58078, fd=2916 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.384223 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58524, fd=3008 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.384230 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53246, fd=3378 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.384228 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34040, fd=180 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.384249 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39606, fd=991 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.384272 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37410, fd=658 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.384374 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53478, fd=2494 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.384519 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57062, fd=2303 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.384660 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57148, fd=2330 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.384704 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57980, fd=3109 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.384704 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60072, fd=3628 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.384823 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56558, fd=2679 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.384831 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43618, fd=1324 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.384847 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44714, fd=1703 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.384887 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62806, fd=3878 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.384933 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48036, fd=2008 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.384938 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61668, fd=3335 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.384941 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34874, fd=522 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.384961 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39402, fd=1237 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.384965 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61528, fd=3304 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.384996 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52808, fd=2384 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.384998 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62770, fd=3387 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.385010 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51820, fd=1883 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.385032 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59636, fd=3073 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.385042 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63200, fd=3426 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.385041 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60938, fd=3192 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.385050 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35300, fd=601 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.385081 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39888, fd=1289 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.385098 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38566, fd=577 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.385114 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38334, fd=539 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.385116 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62102, fd=3274 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.385146 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56082, fd=2683 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.385178 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41636, fd=1261 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.385245 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58970, fd=2987 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.385244 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36332, fd=789 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.385257 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40956, fd=1708 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.385270 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47124, fd=1472 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.385271 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47714, fd=2772 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.385294 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53996, fd=2570 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.385294 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34944, fd=437 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.385301 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40458, fd=1638 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.385345 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48760, fd=1576 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.385354 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42114, fd=1076 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.385360 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49192, fd=1728 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.385366 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45450, fd=1820 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.385392 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34374, fd=400 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.385460 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34492, fd=509 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.385560 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46590, fd=1826 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.385579 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55850, fd=2897 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.385585 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52214, fd=2466 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.385605 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57464, fd=3097 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.385660 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39126, fd=1037 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.385666 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63020, fd=2941 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.385689 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50322, fd=2300 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.385696 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52784, fd=2452 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.385748 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43994, fd=1928 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.385804 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63598, fd=4042 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.385852 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47546, fd=2749 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.385998 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42884, fd=1235 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.386114 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50910, fd=2040 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.386144 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42596, fd=1673 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.386154 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60196, fd=3187 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.386164 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49056, fd=2921 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.386175 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35396, fd=626 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.386232 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36842, fd=855 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.386300 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49520, fd=2232 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.386309 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41212, fd=1207 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.386365 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35850, fd=792 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.386420 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45892, fd=1918 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.386464 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43142, fd=1418 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.386513 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63504, fd=3454 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.386714 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45316, fd=1527 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.386742 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62468, fd=3328 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.386883 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48288, fd=2118 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.386898 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44096, fd=1164 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.386901 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60484, fd=3518 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.386907 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37802, fd=1096 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.386971 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35830, fd=668 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.387005 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50060, fd=1885 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.387100 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55342, fd=2627 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.387106 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54214, fd=2673 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.387146 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42488, fd=1828 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.387180 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54466, fd=2467 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.387192 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36776, fd=850 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.387198 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51380, fd=2397 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.387228 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31116, fd=62 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.387251 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57088, fd=3000 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.387271 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34698, fd=521 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.387304 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62958, fd=3384 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.387313 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62356, fd=3599 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.387319 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63354, fd=3453 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.387330 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59204, fd=3043 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.387366 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55984, fd=3218 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.387419 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48982, fd=2569 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.387462 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39406, fd=1095 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.387567 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33244, fd=480 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.387577 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55084, fd=2130 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.387587 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60630, fd=3530 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.387613 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33822, fd=352 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.387619 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49506, fd=2639 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.387624 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32720, fd=412 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.387649 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43482, fd=1313 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.387692 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44732, fd=1626 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.387707 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61426, fd=3514 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.387704 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1992, fd=3789 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.387723 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61314, fd=3239 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.387778 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1458, fd=4110 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.387785 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53566, fd=2445 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.387805 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40916, fd=938 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.387821 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65132, fd=3857 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.387842 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64926, fd=3612 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.387903 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45802, fd=1348 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.388105 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64408, fd=3155 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.388135 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58782, fd=3904 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.388146 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35886, fd=761 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.388137 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51642, fd=1851 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.388192 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62668, fd=3361 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.388241 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46380, fd=1792 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.388246 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47860, fd=2794 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.388291 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1144, fd=4107 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.388324 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61904, fd=3260 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.388334 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53010, fd=2370 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.388371 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64830, fd=3602 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.388400 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38830, fd=1186 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.388422 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1110, fd=3630 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.388429 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64372, fd=3935 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.388441 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32268, fd=148 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.388499 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1026, fd=4091 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.388529 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2364, fd=4012 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.388563 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1958, fd=3379 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.388581 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60248, fd=2571 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.388588 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54970, fd=3645 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.388606 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65418, fd=3290 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.388629 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46870, fd=1994 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.388690 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64662, fd=4077 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.388715 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40448, fd=1629 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.388730 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56506, fd=2966 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.388736 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52378, fd=2355 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.388745 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33676, fd=423 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.388786 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31778, fd=205 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.388812 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58892, fd=3051 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.388856 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38924, fd=901 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.388877 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65096, fd=3964 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.388888 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2522, fd=3761 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.388908 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53994, fd=2419 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.388953 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35154, fd=727 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.388968 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65380, fd=4089 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.389029 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64700, fd=3815 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.389046 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64630, fd=3185 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.389131 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64978, fd=3626 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.389180 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41994, fd=1476 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.389182 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1894, fd=4097 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.389230 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58442, fd=3889 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.389236 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55534, fd=2564 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.389255 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36278, fd=833 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.389257 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1552, fd=3741 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.389281 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1204, fd=3706 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.389317 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2484, fd=3823 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.389360 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64320, fd=3573 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.389393 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2198, fd=4006 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.389434 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48468, fd=2161 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.389439 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1920, fd=3782 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.389466 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49764, fd=2271 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.389507 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37878, fd=705 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.389563 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2460, fd=3828 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.389590 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64300, fd=3851 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.389607 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45246, fd=1281 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.389660 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2408, fd=4019 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.389670 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2144, fd=3807 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.389676 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2096, fd=3405 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.389696 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1602, fd=4111 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.389774 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39902, fd=1359 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.389853 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64258, fd=4060 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.389871 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51914, fd=2879 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.389875 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59356, fd=3084 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.389876 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64502, fd=3616 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.389877 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42962, fd=1397 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.389911 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65048, fd=3213 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.389943 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65490, fd=3301 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.389957 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1726, fd=3771 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.389973 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55554, fd=2792 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.389975 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1272, fd=3975 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.390012 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1064, fd=4094 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.390058 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52530, fd=3294 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.390138 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64452, fd=3533 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.390164 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1512, fd=3751 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.390212 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61036, fd=2682 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.390235 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1676, fd=4093 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.390245 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47328, fd=2062 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.390266 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37298, fd=622 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.390306 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57998, fd=2398 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.390326 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64584, fd=3939 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.390392 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2076, fd=3396 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.390405 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2556, fd=3923 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.390431 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41514, fd=1319 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.390575 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65298, fd=3653 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.390583 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38404, fd=541 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.390629 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1846, fd=4114 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.390648 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2032, fd=4118 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.390707 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64758, fd=3824 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.390714 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1338, fd=4080 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.390730 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2308, fd=4122 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.390731 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50158, fd=1908 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.390845 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59858, fd=3101 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.390993 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1390, fd=3715 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.391566 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65218, fd=3970 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.391570 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1632, fd=4090 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.391648 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51770, fd=3242 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.391655 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64800, fd=3198 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.391805 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64236, fd=3517 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.391819 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64870, fd=3629 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.391987 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43294, fd=1428 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.392214 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40030, fd=1049 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.392346 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34258, fd=503 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.392354 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65172, fd=3642 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.392357 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2252, fd=3813 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.392362 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65340, fd=3684 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.392364 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36924, fd=396 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.392443 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50332, fd=2199 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.392452 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50920, fd=2337 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.392528 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52146, fd=2451 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.392555 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64536, fd=4037 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.392605 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48372, fd=2138 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.392635 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44074, fd=1531 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.392641 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51412, fd=1811 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.392669 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32076, fd=109 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.392677 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45148, fd=1647 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.392683 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46468, fd=1596 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.392699 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40844, fd=785 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.392717 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33672, fd=457 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.392838 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49642, fd=1769 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.392893 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43400, fd=1622 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.392901 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38030, fd=717 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.392912 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44438, fd=1968 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.392931 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34566, fd=640 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.392957 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58884, fd=2971 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.392984 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31498, fd=145 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.392987 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50838, fd=3086 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.392993 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1792, fd=3900 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.392999 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41406, fd=819 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393019 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36764, fd=899 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393018 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46040, fd=2554 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393020 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47120, fd=2675 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393060 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35666, fd=315 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393070 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57482, fd=3427 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393111 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37744, fd=1085 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393117 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56686, fd=2697 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393130 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39240, fd=951 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393174 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35322, fd=500 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393185 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60970, fd=3241 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393219 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48900, fd=2103 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393221 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31512, fd=138 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393239 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50552, fd=1774 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393245 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30938, fd=32 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393273 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48264, fd=2104 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393289 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30908, fd=31 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393295 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32266, fd=143 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393311 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48612, fd=1597 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393322 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52388, fd=1927 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393347 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37286, fd=880 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393371 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56208, fd=2638 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393405 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48938, fd=2183 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393428 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57168, fd=3012 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393457 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41920, fd=1082 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393502 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41294, fd=1213 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393509 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42112, fd=1072 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393523 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46806, fd=1965 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393532 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36448, fd=606 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393545 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58034, fd=3461 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393470 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57578, fd=2816 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393564 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45362, fd=1905 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393594 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31278, fd=65 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393609 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39742, fd=1269 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393610 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42426, fd=976 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393626 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30996, fd=39 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393687 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59278, fd=3358 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393766 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31330, fd=63 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393778 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49814, fd=2280 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393796 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60154, fd=3173 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393810 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36060, fd=799 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393813 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38814, fd=983 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393830 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39608, fd=1043 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393838 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30968, fd=36 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393864 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43648, fd=1483 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393877 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38812, fd=597 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393886 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40450, fd=878 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393896 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58488, fd=2914 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393896 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31088, fd=42 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393922 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31904, fd=203 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393926 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47854, fd=1980 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393941 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40260, fd=1332 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393969 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47480, fd=1499 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393977 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31026, fd=41 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.393992 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50868, fd=2218 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.394010 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44776, fd=1848 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.394019 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42960, fd=1420 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.394086 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46532, fd=1882 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.394164 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47484, fd=1950 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.394166 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39320, fd=935 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.394202 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38284, fd=807 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.394225 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59692, fd=3136 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.394263 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33522, fd=562 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.394365 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35730, fd=782 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.394381 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31396, fd=69 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.394404 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49268, fd=2947 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.394421 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41756, fd=1268 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.394531 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54778, fd=3132 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.394529 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34972, fd=277 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.394651 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33934, fd=590 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.394696 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42996, fd=1248 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.394715 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51884, fd=2408 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.394720 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44374, fd=1775 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.394780 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49340, fd=2125 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.394799 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53682, fd=2663 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.394837 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31160, fd=53 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.394854 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37640, fd=906 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.394855 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55712, fd=3737 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.394862 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31008, fd=54 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.394904 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53270, fd=3364 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.394939 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35150, fd=483 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.394948 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31794, fd=104 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.394969 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45568, fd=1300 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.394993 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52834, fd=2520 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.395062 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44896, fd=1234 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.395110 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60542, fd=2618 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.395165 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32784, fd=265 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.395298 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55238, fd=3169 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.395343 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34734, fd=418 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.395540 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54218, fd=2591 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.395581 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38428, fd=816 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.395605 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34264, fd=382 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.395617 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45918, fd=1352 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.395635 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33242, fd=472 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.396048 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36480, fd=826 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.396069 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42692, fd=1126 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.396132 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33136, fd=460 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.396191 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49912, fd=2692 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.396193 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64028, fd=3487 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.396196 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37586, fd=893 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.396252 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46974, fd=2021 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.396291 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63834, fd=4050 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.396313 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60318, fd=3195 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.396441 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43918, fd=1919 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.396610 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43226, fd=1279 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.396631 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40798, fd=797 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.396640 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39068, fd=618 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.396695 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54880, fd=2121 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.396704 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62880, fd=4028 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.396732 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41798, fd=888 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.396736 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37064, fd=445 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.396774 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42506, fd=969 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.396786 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50062, fd=1709 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.396828 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60682, fd=3408 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.396832 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46438, fd=2589 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.396849 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50604, fd=2216 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.396881 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39632, fd=985 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.396970 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59450, fd=3091 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.396993 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52210, fd=2453 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397019 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58574, fd=2929 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397022 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63538, fd=3013 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397032 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59660, fd=3587 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397055 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49328, fd=2628 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397069 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52356, fd=2322 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397131 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61166, fd=3597 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397151 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46886, fd=1415 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397193 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39176, fd=1227 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397238 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61312, fd=3736 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397251 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38500, fd=845 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397260 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33574, fd=310 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397270 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64070, fd=3541 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397286 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55426, fd=3713 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397298 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32714, fd=215 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397300 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46332, fd=2583 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397323 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44870, fd=1468 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397379 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34204, fd=210 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397459 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35482, fd=305 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397475 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41672, fd=1008 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397511 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62492, fd=4025 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397530 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51220, fd=2259 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397543 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40720, fd=1441 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397594 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49462, fd=1696 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397616 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48750, fd=2895 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397689 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38026, fd=980 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397710 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51130, fd=2363 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397748 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58124, fd=2870 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397750 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48376, fd=1582 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397753 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57016, fd=2289 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397800 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57072, fd=2787 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397809 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60480, fd=3957 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397842 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48068, fd=2053 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397846 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62174, fd=3289 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397860 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42248, fd=950 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397871 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44376, fd=1424 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397913 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63094, fd=3670 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397918 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40056, fd=1110 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397925 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63952, fd=3928 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397967 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43252, fd=1501 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397974 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34502, fd=557 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397977 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56002, fd=2934 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397990 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45636, fd=1342 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.397991 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37296, fd=477 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.398031 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52974, fd=3348 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.398037 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38638, fd=582 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.398039 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56630, fd=3344 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.398044 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57572, fd=2902 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.398082 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58380, fd=2906 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.398107 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54046, fd=2509 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.398162 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35976, fd=673 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.398165 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58830, fd=3181 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.398189 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35000, fd=589 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.398200 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37624, fd=648 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.398274 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51708, fd=2417 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.398287 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63370, fd=3525 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.398325 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41060, fd=1502 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.398344 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36002, fd=803 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.398359 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45066, fd=1265 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.398380 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37066, fd=463 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.398396 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63626, fd=3797 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.398432 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32178, fd=243 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.398557 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35402, fd=728 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.398565 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42840, fd=1859 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.398568 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47442, fd=1505 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.398578 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62200, fd=3281 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.398583 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54310, fd=2081 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.398634 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40128, fd=1594 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.398636 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45878, fd=1917 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.398668 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57954, fd=2837 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.398689 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47332, fd=2054 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.398694 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62556, fd=3617 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.398782 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38178, fd=1149 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.398876 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47858, fd=2087 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.398887 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60068, fd=3475 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.398902 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42174, fd=1790 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.398920 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44336, fd=1180 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.398962 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54558, fd=3551 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.399032 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48940, fd=1701 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.399053 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55624, fd=2651 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.399055 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36482, fd=885 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.399119 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43820, fd=1349 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.399132 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63738, fd=4046 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.399134 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39592, fd=971 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.399194 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32452, fd=318 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.399196 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47898, fd=2089 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.399232 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53094, fd=1989 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.399338 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57416, fd=2338 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.399358 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40530, fd=895 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.399590 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51730, fd=2399 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.399585 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51336, fd=2367 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.399652 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41268, fd=1715 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.399690 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53592, fd=2055 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.399744 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32670, fd=165 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.399799 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64992, fd=3592 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.399841 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56150, fd=2693 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.399847 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33064, fd=222 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.399905 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46890, fd=2660 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.399939 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64314, fd=3579 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.399992 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2278, fd=3916 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.400027 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50500, fd=1962 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.400134 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64276, fd=3567 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.400189 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61732, fd=3557 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.400225 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45350, fd=2039 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.400274 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1986, fd=3909 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.400298 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65180, fd=4082 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.400333 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65162, fd=3226 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.400368 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59036, fd=3299 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.400399 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55116, fd=3156 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.400441 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1578, fd=3987 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.400452 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65066, fd=3652 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.400505 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56540, fd=2935 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.400509 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63230, fd=3895 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.400520 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34080, fd=185 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.400527 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2438, fd=4124 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.400549 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60930, fd=3174 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.400551 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31058, fd=56 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.400595 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64104, fd=3931 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.400603 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1662, fd=3894 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.400619 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2046, fd=3794 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.400670 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2388, fd=4104 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.400684 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59914, fd=3158 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.400684 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1910, fd=3998 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.400697 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1314, fd=3651 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.400709 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64838, fd=3951 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.400753 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2024, fd=3912 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.400877 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59234, fd=3209 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.400910 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43780, fd=1340 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.400977 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61730, fd=3562 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.400989 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1544, fd=3666 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.401000 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65420, fd=3877 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.401031 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64424, fd=4034 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.401102 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1444, fd=3734 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.401131 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64400, fd=4067 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.401156 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53570, fd=2636 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.401157 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2114, fd=4102 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.401161 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64490, fd=3937 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.401180 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64756, fd=3830 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.401189 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2224, fd=4103 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.401226 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2478, fd=3839 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.401382 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1832, fd=3363 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.401501 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1780, fd=3897 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.401520 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1040, fd=4092 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.401521 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1380, fd=4083 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.401571 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1620, fd=3753 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.401600 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64350, fd=4065 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.401664 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2164, fd=3913 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.401689 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64252, fd=3522 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.401802 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65038, fd=3847 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.401826 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65284, fd=3865 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.401882 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65106, fd=3858 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.401882 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53632, fd=2463 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.401887 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64664, fd=3586 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.401948 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37434, fd=511 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.401964 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39930, fd=831 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.401971 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64698, fd=3810 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.401986 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65338, fd=3658 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.402009 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56474, fd=2717 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.402065 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54538, fd=3545 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.402060 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54064, fd=3054 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.402087 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64872, fd=3956 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.402109 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52676, fd=2424 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.402116 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31374, fd=177 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.402189 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35894, fd=754 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.402207 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43706, fd=1337 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.402288 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34920, fd=449 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.402351 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1188, fd=3324 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.402373 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34004, fd=167 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.402408 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65464, fd=3683 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.402420 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1702, fd=4096 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.402512 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50156, fd=3052 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.402539 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1262, fd=3703 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.402545 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38980, fd=1012 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.402547 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64532, fd=3547 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.402549 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50020, fd=3037 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.402599 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33526, fd=248 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.402610 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52216, fd=1920 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.402611 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31194, fd=72 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.402634 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32984, fd=298 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.402757 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2508, fd=3852 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.402770 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47766, fd=2030 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.402775 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45730, fd=1834 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.402786 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65384, fd=3280 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.402848 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46808, fd=1426 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.402893 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37946, fd=529 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.402916 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45180, fd=1789 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.402983 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55018, fd=3627 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.402987 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58960, fd=2995 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.403155 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1878, fd=3373 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.403175 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56820, fd=2974 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.403187 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53244, fd=2003 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.403207 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31852, fd=160 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.403225 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65230, fd=3968 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.403234 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41646, fd=1283 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.403231 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31024, fd=35 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.403239 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1136, fd=4076 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.403303 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65524, fd=3687 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.403400 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1412, fd=3980 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.403423 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49172, fd=2238 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.403459 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57286, fd=2325 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.403533 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58514, fd=2990 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.403545 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64632, fd=4039 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.403601 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2084, fd=4120 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.403604 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41072, fd=1490 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.403672 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1102, fd=4106 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.403731 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1230, fd=3974 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.403749 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47266, fd=1870 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.403754 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43206, fd=1432 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.403798 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1924, fd=4099 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.403839 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2302, fd=3814 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.403844 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64570, fd=4073 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.403916 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36934, fd=817 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.403921 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2334, fd=3735 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.403967 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48752, fd=2181 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.403975 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65174, fd=3251 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.404077 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39478, fd=1042 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.404155 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32202, fd=239 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.404193 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31266, fd=59 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.404195 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1516, fd=3758 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.404214 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58104, fd=2415 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.404216 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1756, fd=3767 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.404246 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1690, fd=4095 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.404269 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31082, fd=51 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.404282 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46164, fd=1778 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.404284 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1490, fd=3733 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.404288 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44232, fd=1206 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.404322 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2494, fd=3756 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.404388 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38430, fd=823 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.404424 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65448, fd=3296 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.404444 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2332, fd=3821 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.404473 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65494, fd=3972 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.404557 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1614, fd=3674 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.404612 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1994, fd=4117 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.404633 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64606, fd=3580 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.404649 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65086, fd=4079 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.404667 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44724, fd=1209 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.404676 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50614, fd=2299 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.404689 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51134, fd=2356 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.404698 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65358, fd=3871 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.404719 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2112, fd=3804 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.404823 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55488, fd=2644 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.404821 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64672, fd=3594 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.404848 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40502, fd=1059 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.404899 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30936, fd=38 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.404910 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51684, fd=3248 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.404918 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1410, fd=4085 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.404920 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64380, fd=3144 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.404965 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1478, fd=4087 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.404983 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35324, fd=607 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.404984 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2372, fd=3817 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.405009 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64802, fd=3577 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.405021 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52782, fd=2535 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.405024 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55972, fd=2737 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.405054 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36384, fd=858 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.405059 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32534, fd=268 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.405118 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31552, fd=73 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.405126 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64846, fd=3607 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.405145 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1298, fd=3978 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.405160 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1936, fd=3702 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.405187 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64768, fd=3838 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.405193 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1366, fd=3331 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.405238 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1650, fd=4113 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.405259 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2476, fd=3834 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.405275 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1908, fd=4098 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.405299 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34478, fd=240 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.405356 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65404, fd=4059 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.405400 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64930, fd=3843 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.405417 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65050, fd=3854 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.405429 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64334, fd=3528 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.405431 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1116, fd=3317 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.405432 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1972, fd=4101 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.405486 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49638, fd=2262 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.405501 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64416, fd=3596 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.405512 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65006, fd=3962 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.405543 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42224, fd=1134 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.405569 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57748, fd=2849 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.405663 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65264, fd=3863 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.405709 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42752, fd=1541 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.405714 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64554, fd=4072 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.405734 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45910, fd=1939 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.405768 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2042, fd=4119 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.405859 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48484, fd=2498 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.405923 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57328, fd=3862 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.405952 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46992, fd=1427 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.406005 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2210, fd=3809 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.406074 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48996, fd=2908 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.406071 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1162, fd=3699 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.406151 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64272, fd=3140 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.406155 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61164, fd=3291 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.406179 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53346, fd=2601 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.406186 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51276, fd=3133 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.406191 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64650, fd=3942 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.406194 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36378, fd=379 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.406214 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2532, fd=3829 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.406235 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50634, fd=2314 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.406319 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1814, fd=3686 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.406390 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65312, fd=3867 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.406405 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50136, fd=1891 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.406412 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45346, fd=1533 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.406450 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2152, fd=3728 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.406452 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1030, fd=4068 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.406473 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32304, fd=152 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.406512 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56792, fd=2722 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.406535 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2294, fd=3917 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.406576 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64896, fd=4078 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.406577 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49510, fd=2155 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.406590 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54780, fd=3139 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.406626 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33274, fd=226 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.406662 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59030, fd=2996 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.406666 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64472, fd=3609 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.406666 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65136, fd=3634 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.406676 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61646, fd=3996 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.406709 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62782, fd=3375 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.406738 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55284, fd=2539 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.406767 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41644, fd=1001 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.406834 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44828, fd=1712 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.406878 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35876, fd=787 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.406970 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1568, fd=3986 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.406990 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40014, fd=1050 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.407025 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1074, fd=3694 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.407041 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34364, fd=223 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.407076 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39010, fd=757 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.407102 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57860, fd=3882 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.407172 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65122, fd=3671 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.407211 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52364, fd=2473 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.407262 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37880, fd=531 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.407323 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52860, fd=2389 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.407328 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1868, fd=3903 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.407390 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47532, fd=2742 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.407428 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62068, fd=3818 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.407452 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2256, fd=3915 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.407474 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42160, fd=1803 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.407545 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63016, fd=3479 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.407590 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62462, fd=3688 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.407604 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43202, fd=1595 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.407752 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56326, fd=3314 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.407767 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64516, fd=3168 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.407773 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38454, fd=1027 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.407805 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47976, fd=1525 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.407819 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38904, fd=1004 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.407872 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42098, fd=1480 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.407942 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35122, fd=488 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.408014 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49940, fd=1881 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.408028 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61618, fd=2761 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.408119 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36928, fd=758 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.408203 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57094, fd=3004 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.408208 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50594, fd=1971 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.408278 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60698, fd=3413 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.408337 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60320, fd=3123 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.408378 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36236, fd=827 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.408408 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60800, fd=3537 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.408423 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34866, fd=574 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.408498 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37414, fd=863 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.408520 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64224, fd=4058 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.408537 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59462, fd=3053 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.408546 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60364, fd=3955 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.408629 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64206, fd=3134 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.408692 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55796, fd=2729 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.408715 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53808, fd=2688 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.408751 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61156, fd=2708 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.408760 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44248, fd=1391 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.408762 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59962, fd=3445 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.408772 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42734, fd=1203 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.408776 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59948, fd=3455 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.408886 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43818, fd=1562 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.408918 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63628, fd=4043 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.408937 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63528, fd=3910 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.408969 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62114, fd=3374 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.409017 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33796, fd=343 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.409047 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62484, fd=2839 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.409053 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58610, fd=3262 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.409130 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64200, fd=3849 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.409132 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37264, fd=856 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.409134 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39390, fd=1278 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.409144 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36714, fd=387 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.409177 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54802, fd=2759 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.409207 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40342, fd=1616 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.409277 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59494, fd=3096 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.409312 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32810, fd=441 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.409363 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51752, fd=2319 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.409384 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48150, fd=2128 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.409444 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58188, fd=2427 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.409450 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62820, fd=2890 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.409472 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55396, fd=2553 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.409534 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46916, fd=1451 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.409560 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52968, fd=2456 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.409739 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54216, fd=2077 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.409756 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40848, fd=1062 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.409761 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35766, fd=739 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.409803 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52398, fd=2904 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.409818 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56512, fd=2951 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.409818 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37746, fd=959 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.409836 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40500, fd=887 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.410018 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54312, fd=2436 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.410018 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46522, fd=2005 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.410057 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44400, fd=1188 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.410075 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41000, fd=1408 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.410125 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57676, fd=2896 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.410326 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59072, fd=3002 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.410392 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39780, fd=715 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.410415 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55950, fd=3783 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.410562 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48816, fd=2097 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.410567 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51136, fd=2374 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.410596 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49138, fd=2213 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.410984 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56880, fd=3016 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.411138 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35716, fd=558 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.411145 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40470, fd=1058 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.411193 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43608, fd=1330 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.411255 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50216, fd=3058 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.411283 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52444, fd=1947 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.411391 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38456, fd=1028 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.411403 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31738, fd=196 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.411432 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36820, fd=592 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.411512 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62428, fd=3311 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.411603 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47670, fd=1993 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.411638 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54340, fd=3515 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.411747 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51874, fd=2281 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.411826 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61154, fd=3265 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.411875 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48712, fd=1643 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.411951 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59510, fd=3060 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.412064 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45372, fd=1544 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.412109 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45948, fd=1912 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.412121 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34684, fd=403 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.412308 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42102, fd=1119 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.412367 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48134, fd=1540 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.412442 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57374, fd=2812 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.412448 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60694, fd=3160 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.412498 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60332, fd=3496 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.412621 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63368, fd=3778 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.412633 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36210, fd=844 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.412646 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37750, fd=525 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.412704 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51518, fd=2296 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.412734 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59946, fd=3948 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.412752 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47082, fd=2707 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.412762 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37906, fd=675 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.412854 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58256, fd=2892 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.412908 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41630, fd=1338 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.412924 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40012, fd=1374 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.412937 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63152, fd=3890 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.413009 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37418, fd=628 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.413032 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42594, fd=1835 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.413038 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61086, fd=3969 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.413077 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55458, fd=2847 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.413085 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41236, fd=1064 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.413116 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55970, fd=2205 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.413127 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62948, fd=2932 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.413153 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32974, fd=289 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.413200 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36090, fd=814 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.413173 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33438, fd=410 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.413378 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58868, fd=2464 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.413425 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32274, fd=114 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.413528 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32562, fd=126 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.413434 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59084, fd=3009 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.413835 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39560, fd=1255 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.413998 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46272, fd=1967 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.414214 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62666, fd=3353 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.414266 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47886, fd=2046 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.414282 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53914, fd=2526 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.414395 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59260, fd=3240 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.414435 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50160, fd=1746 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.414455 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57922, fd=2381 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.414582 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57612, fd=2357 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.414875 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60614, fd=3167 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.414876 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35758, fd=730 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.414897 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34646, fd=444 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.414972 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59800, fd=3277 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.415033 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61526, fd=3204 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.415110 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46914, fd=2001 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.415186 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54262, fd=2566 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.415349 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56748, fd=2979 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.415354 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59404, fd=3371 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.415388 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58526, fd=2923 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.415403 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53238, fd=2480 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.415540 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50598, fd=2746 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.415927 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62708, fd=3435 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:56.416005 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41944, fd=903 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.682763 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44618, fd=2016 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.683183 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51036, fd=2803 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.683349 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61576, fd=3314 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.683453 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63426, fd=2930 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.683507 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46522, fd=1515 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.683469 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48208, fd=1634 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.683751 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49976, fd=2433 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.683771 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45872, fd=3550 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.683860 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43950, fd=1388 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.683864 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61988, fd=2677 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.683915 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57802, fd=2407 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.684096 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54400, fd=2142 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.684139 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56770, fd=3814 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.684288 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59426, fd=2604 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.684369 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34158, fd=374 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.684414 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62368, fd=2823 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.684461 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42368, fd=1246 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.684836 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56580, fd=3051 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.684848 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53078, fd=2083 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.684945 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61306, fd=3632 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.685209 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60444, fd=3146 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.685230 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45260, fd=1257 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.685250 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62064, fd=2765 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.685247 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35052, fd=487 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.685280 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53560, fd=3759 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.685361 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42122, fd=1218 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.685356 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63146, fd=3695 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.685360 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40838, fd=3349 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.685453 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34314, fd=304 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.685456 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52564, fd=3365 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.685470 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36718, fd=470 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.685490 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54012, fd=3423 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.685571 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44216, fd=1408 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.685605 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51610, fd=1935 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.685684 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57634, fd=2447 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.685735 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38760, fd=773 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.685736 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50052, fd=1669 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.685742 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49396, fd=1745 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.685764 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54696, fd=3773 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.685770 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57162, fd=2365 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.685790 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60880, fd=3267 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.685991 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62790, fd=3195 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.686031 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37288, fd=593 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.686064 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51090, fd=2808 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.686077 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55130, fd=2211 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.686292 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31628, fd=43 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.686295 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40492, fd=1872 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.686308 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61714, fd=2731 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.686359 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63844, fd=2992 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.686379 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41040, fd=1044 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.686375 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48904, fd=1831 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.686419 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64248, fd=2995 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.686420 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39334, fd=1007 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.686846 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63194, fd=2894 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.686906 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33738, fd=308 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.686982 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35284, fd=459 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.687173 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43666, fd=1281 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.687243 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59638, fd=3568 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.687292 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38296, fd=887 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.687351 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64090, fd=3721 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.687405 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35734, fd=578 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.687413 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43142, fd=1276 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.687660 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59150, fd=3172 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.687730 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52088, fd=1937 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.687735 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63514, fd=2929 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.687786 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39910, fd=1025 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.688202 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53896, fd=2845 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.688206 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55648, fd=2129 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.688294 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56104, fd=3473 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.688441 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47096, fd=2418 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.688458 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62836, fd=3902 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.688495 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48410, fd=1547 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.688547 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34842, fd=472 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.688742 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37802, fd=671 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.688787 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52834, fd=2041 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.688842 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47754, fd=1736 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.688859 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34160, fd=361 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.688870 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45898, fd=1340 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.688879 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36156, fd=590 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.688945 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50616, fd=3276 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.689065 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34582, fd=359 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.689282 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62430, fd=3897 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.689280 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54374, fd=2200 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.689286 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58186, fd=3122 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.689402 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42764, fd=1285 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.689471 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49252, fd=3637 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.689579 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41854, fd=1112 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.689611 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32834, fd=163 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.689608 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57216, fd=2383 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.689696 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54960, fd=2936 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.689712 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57752, fd=2420 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.689728 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52938, fd=3371 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.689736 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33138, fd=205 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.689738 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44742, fd=2178 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.689771 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32584, fd=172 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.689791 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47004, fd=2406 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.689806 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35590, fd=564 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.689892 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37276, fd=775 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.690036 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32076, fd=94 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.690071 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51170, fd=1862 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.690124 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31764, fd=56 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.690141 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56664, fd=3053 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.690193 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44846, fd=1461 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.690206 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38868, fd=945 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.690216 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38326, fd=788 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.690225 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31572, fd=35 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.690227 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40850, fd=896 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.690265 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49652, fd=1724 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.690273 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54364, fd=2175 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.690289 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59144, fd=3163 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.690332 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33736, fd=348 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.690337 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40288, fd=1083 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.690670 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42658, fd=1072 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.690694 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51780, fd=1784 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.690714 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33276, fd=180 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.690726 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52056, fd=2687 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.690737 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31596, fd=34 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.690774 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55366, fd=2959 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.690780 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45050, fd=2037 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.690834 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56202, fd=3803 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.690931 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48748, fd=2305 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.690940 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31646, fd=39 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.690981 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48112, fd=1620 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.691000 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45548, fd=1288 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.691010 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50266, fd=3661 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.691026 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50470, fd=2713 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.691060 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46064, fd=2105 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.691102 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52410, fd=1988 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.691156 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32538, fd=126 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.691200 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35160, fd=423 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.691214 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50708, fd=1829 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.691221 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60870, fd=3874 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.691232 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47342, fd=3581 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.691261 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34310, fd=405 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.691338 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51606, fd=1929 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.691392 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52190, fd=3343 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.691446 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59568, fd=3119 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.691451 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47798, fd=1590 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.691457 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39876, fd=3273 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.691504 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51302, fd=1881 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.691543 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39364, fd=3231 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.691704 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41306, fd=1094 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.691706 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45886, fd=1579 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.691796 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43188, fd=1374 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.691952 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36728, fd=694 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.691977 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46866, fd=1406 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.692004 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32266, fd=144 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.692066 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42564, fd=1061 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.692080 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36626, fd=703 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.692101 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37610, fd=815 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.692099 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44282, fd=1993 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.692143 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54878, fd=3029 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.692300 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40090, fd=811 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.692298 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34790, fd=457 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.692301 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31718, fd=45 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.692372 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46428, fd=1520 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.692459 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31678, fd=40 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.692458 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58712, fd=3838 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.692457 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46564, fd=1594 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.692576 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41328, fd=1080 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.692590 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31558, fd=30 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.692686 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32302, fd=104 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.692694 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43714, fd=1363 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.692692 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45082, fd=3522 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.692702 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55296, fd=2220 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.692730 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61356, fd=3636 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.692762 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53284, fd=2080 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.692800 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31818, fd=55 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.692824 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31882, fd=65 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.692843 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53838, fd=2968 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.692857 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42358, fd=1051 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.692874 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44210, fd=1162 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.692908 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36080, fd=543 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.692957 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49730, fd=1772 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.692993 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39618, fd=990 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.693040 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47554, fd=1714 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.693059 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46966, fd=1554 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.693098 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51510, fd=2620 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.693163 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32128, fd=88 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.693175 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58578, fd=3147 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.693182 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59548, fd=2627 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.693194 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62564, fd=2822 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.693208 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60442, fd=3607 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.693314 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63880, fd=3394 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.693322 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31566, fd=32 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.693334 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64610, fd=3737 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.693342 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50058, fd=2417 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.693357 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40414, fd=1081 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.693409 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38070, fd=613 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.693427 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58114, fd=3828 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.693442 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49290, fd=1600 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.693570 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31942, fd=70 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.693635 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44350, fd=1379 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.693673 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54530, fd=2904 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.693732 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43736, fd=1359 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.693745 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39918, fd=806 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.693774 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59960, fd=3584 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.693793 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32848, fd=184 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.693824 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52620, fd=3742 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.693834 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53940, fd=2095 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.693833 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53438, fd=3395 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.693838 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61350, fd=2755 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.693847 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53796, fd=1968 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.693848 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33688, fd=305 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.693858 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61760, fd=3649 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.693875 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48210, fd=1652 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.693884 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40744, fd=1006 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.693891 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51016, fd=1880 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.693901 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47542, fd=1614 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.693989 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62892, fd=3689 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.694001 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61796, fd=2659 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.694000 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31640, fd=44 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.694007 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38322, fd=927 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.694027 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63878, fd=3913 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.694084 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51968, fd=2683 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.694116 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57194, fd=3504 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.694121 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57004, fd=2276 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.694146 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48214, fd=1624 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.694159 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63286, fd=3906 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.694173 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60402, fd=3230 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.694188 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35074, fd=523 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.694201 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45594, fd=1514 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.694210 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49512, fd=3646 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.694248 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31836, fd=74 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.694256 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57560, fd=3514 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.694255 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48870, fd=1825 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.694286 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64298, fd=3290 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.694289 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47776, fd=2505 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.694344 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52158, fd=1818 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.694387 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56494, fd=3079 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.694399 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40956, fd=916 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.694408 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41838, fd=1210 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.694528 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53054, fd=2901 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.694543 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51124, fd=3698 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.694599 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62084, fd=3338 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.694607 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64810, fd=3325 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.694713 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63546, fd=3705 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.694752 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55178, fd=2208 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.694856 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55966, fd=3799 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.694943 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64812, fd=3933 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.694953 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52436, fd=2027 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.694976 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50120, fd=3659 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695005 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64390, fd=3300 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695013 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48716, fd=3622 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695022 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43028, fd=1344 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695115 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60986, fd=2696 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695126 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64540, fd=3735 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695144 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58292, fd=3831 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695208 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56662, fd=2232 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695216 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59566, fd=2460 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695247 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40416, fd=3330 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695261 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38594, fd=959 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695275 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53314, fd=2044 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695286 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46400, fd=1380 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695317 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64800, fd=3022 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695317 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41258, fd=1100 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695333 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45364, fd=1486 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695390 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38456, fd=926 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695422 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37110, fd=569 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695423 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35574, fd=617 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695428 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43334, fd=1244 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695444 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57698, fd=3112 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695453 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41750, fd=1933 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695490 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63582, fd=3379 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695594 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50518, fd=1810 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695582 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54698, fd=2236 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695637 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39606, fd=771 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695724 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60464, fd=3868 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695736 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53480, fd=2824 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695773 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49576, fd=1898 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695790 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42360, fd=1241 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695810 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55074, fd=2088 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695836 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37232, fd=588 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695879 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44116, fd=1450 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695941 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59140, fd=2568 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695946 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59980, fd=2523 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695966 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55572, fd=3462 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695965 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43468, fd=1342 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695972 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47140, fd=1570 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695982 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64720, fd=3412 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695981 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64586, fd=3926 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.695994 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64758, fd=3321 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.696048 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64772, fd=3932 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.696108 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58702, fd=2458 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.696127 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42678, fd=1299 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.696141 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43192, fd=3470 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.696203 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60002, fd=2600 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.696233 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43826, fd=1959 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.696256 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64704, fd=3023 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.696302 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62944, fd=3685 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.696351 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42082, fd=1172 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.696367 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45276, fd=3536 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.696402 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39060, fd=825 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.696430 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64668, fd=2896 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.696472 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62474, fd=2718 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.696527 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59126, fd=2575 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.696529 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64094, fd=2832 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.696617 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52624, fd=1868 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.696667 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64284, fd=2844 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.696690 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64492, fd=2990 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.696707 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42850, fd=1103 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.696709 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42100, fd=3421 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.696757 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45888, fd=1529 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.696801 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64092, fd=3275 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.696806 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53972, fd=2150 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.696817 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39144, fd=836 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.696828 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64836, fd=2998 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.696829 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64782, fd=3030 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.696832 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64468, fd=3923 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.696887 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63246, fd=3697 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.697059 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40198, fd=950 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.697075 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53076, fd=3754 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.697191 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41556, fd=3393 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.697238 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51664, fd=3711 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.697238 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55678, fd=2256 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.697402 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60988, fd=3876 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.697529 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64550, fd=3925 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.697531 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64828, fd=3025 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.697565 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46278, fd=1574 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.697578 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50644, fd=1821 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.697763 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62212, fd=3664 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.697787 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42650, fd=1983 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.697796 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39344, fd=3235 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.697809 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33116, fd=217 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.697869 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44670, fd=1498 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.697864 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46402, fd=2138 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.697905 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58286, fd=2430 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.697954 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56188, fd=2289 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.697983 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50018, fd=1815 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.698018 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64798, fd=3414 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.698031 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49694, fd=1883 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.698051 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43428, fd=3461 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.698076 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45854, fd=1469 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.698095 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35472, fd=480 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.698119 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64662, fd=2891 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.698169 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38918, fd=827 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.698182 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48340, fd=1527 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.698252 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31896, fd=84 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.698408 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64762, fd=2994 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.698474 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32670, fd=185 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.698512 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38512, fd=934 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.698515 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45018, fd=1466 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.698565 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49142, fd=1739 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.698610 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49422, fd=1612 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.698622 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42176, fd=1221 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.698663 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33584, fd=246 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.698675 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48604, fd=1780 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.698686 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43692, fd=1336 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.698707 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45582, fd=3538 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.698850 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32222, fd=100 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.698976 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46674, fd=1582 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.699137 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38096, fd=838 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.699136 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40708, fd=1892 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.699167 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35092, fd=500 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.699200 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40234, fd=816 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.699276 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31744, fd=53 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.699299 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41736, fd=1093 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.699402 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48318, fd=3606 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.699491 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33862, fd=329 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.699520 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36630, fd=652 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.699552 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47246, fd=1557 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.699555 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50558, fd=1811 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.699573 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48090, fd=1650 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.699614 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64420, fd=2861 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.699634 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37940, fd=581 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.699679 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33520, fd=254 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.699668 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51870, fd=1931 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.699697 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44900, fd=2192 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.699712 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39318, fd=985 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.699717 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43134, fd=3447 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.699737 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37468, fd=786 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.699752 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43068, fd=3450 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.699755 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48892, fd=2593 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.699784 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40978, fd=904 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.699818 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57766, fd=2386 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.699844 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37430, fd=764 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.699875 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34858, fd=479 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.699870 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38378, fd=899 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.699896 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42098, fd=1958 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.699906 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46136, fd=2292 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.699925 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32750, fd=152 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.700015 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48490, fd=3612 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.700069 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56424, fd=3073 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.700074 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40274, fd=835 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.700089 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45902, fd=1575 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.700098 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39342, fd=960 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.700102 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45398, fd=3524 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.700124 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40726, fd=982 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.700163 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44458, fd=1338 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.700207 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41280, fd=1155 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.700229 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46920, fd=1540 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.700238 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37760, fd=559 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.700238 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33966, fd=372 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.700281 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36174, fd=663 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.700317 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47834, fd=2464 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.700322 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44798, fd=3507 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.700352 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41762, fd=1142 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.700367 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34184, fd=209 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.700407 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35804, fd=631 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.700463 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46382, fd=3558 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.700556 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32416, fd=113 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.700550 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42478, fd=1201 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.700570 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42574, fd=1247 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.700584 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54174, fd=2108 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.700612 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58236, fd=3830 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.700610 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55018, fd=2071 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.700642 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39728, fd=983 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.700653 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40434, fd=3315 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.700657 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58704, fd=2452 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.700677 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48948, fd=1742 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.700721 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46396, fd=1584 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.700765 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59128, fd=3107 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.700782 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32156, fd=130 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.700832 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37012, fd=774 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.700872 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31852, fd=73 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.700946 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32372, fd=112 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.700965 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35286, fd=481 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.701064 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31660, fd=42 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.701097 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55478, fd=3052 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.701134 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43474, fd=3478 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.701174 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32844, fd=214 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.701241 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52282, fd=2698 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.701252 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52706, fd=2018 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.701333 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47526, fd=1443 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.701345 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43942, fd=1446 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.701395 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59538, fd=3852 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.701407 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39840, fd=905 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.701411 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36920, fd=501 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.701433 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53188, fd=2795 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.701625 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41988, fd=1166 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.701630 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34778, fd=461 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.701639 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54626, fd=2899 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.701686 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33064, fd=161 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.701947 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31762, fd=67 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.701988 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47990, fd=1494 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.702026 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47450, fd=1448 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.702048 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44368, fd=1174 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.702104 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36442, fd=597 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.702161 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51030, fd=2583 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.702251 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43964, fd=1433 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.702428 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32090, fd=83 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.702763 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39944, fd=903 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.702758 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41498, fd=3369 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.702841 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44276, fd=1976 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.702904 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42866, fd=1271 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.702916 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57284, fd=2286 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.702930 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49548, fd=2644 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.702948 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46880, fd=1608 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.702980 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47782, fd=1636 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.703011 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51436, fd=1914 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.703032 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35008, fd=494 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.703085 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55928, fd=2148 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.703094 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45432, fd=2235 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.703194 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48888, fd=2550 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.703208 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53558, fd=2067 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.703223 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48416, fd=1794 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.703268 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44800, fd=1503 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.703306 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40738, fd=875 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.703301 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53680, fd=1934 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.703356 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41242, fd=1059 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.703374 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42086, fd=1209 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.703405 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36464, fd=604 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.703434 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54074, fd=2162 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.703606 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37522, fd=761 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.703622 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61574, fd=3175 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.703643 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63372, fd=2761 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.703643 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56632, fd=3490 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.703702 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43162, fd=2055 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.703744 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64436, fd=3921 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.703760 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64146, fd=2972 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.703766 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58622, fd=3541 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.703824 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61232, fd=2725 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.703871 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63130, fd=2932 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.703885 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51142, fd=1749 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.703946 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64484, fd=3924 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.703953 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38770, fd=3210 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.703982 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58196, fd=3088 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.703999 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60162, fd=3592 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704067 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59966, fd=2515 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704087 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56730, fd=2237 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704111 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45812, fd=1468 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704127 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54668, fd=3433 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704138 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40358, fd=971 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704168 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31956, fd=93 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704198 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55656, fd=2321 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704246 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35822, fd=520 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704283 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59536, fd=2580 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704288 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62990, fd=2862 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704323 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56782, fd=2320 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704333 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34446, fd=258 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704339 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55832, fd=3467 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704364 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37914, fd=859 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704371 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51648, fd=3713 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704441 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63882, fd=2996 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704458 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42200, fd=1233 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704513 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61972, fd=2748 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704523 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34540, fd=412 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704533 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46996, fd=3575 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704541 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43712, fd=1339 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704586 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55338, fd=2306 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704606 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54302, fd=2183 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704630 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64358, fd=3294 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704645 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37416, fd=738 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704664 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53728, fd=2131 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704729 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38048, fd=620 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704755 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52716, fd=2737 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704794 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49850, fd=1782 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704837 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63928, fd=2975 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704845 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61080, fd=2674 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704860 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62282, fd=2704 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704871 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60630, fd=2661 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704886 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50658, fd=2749 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704881 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62340, fd=2869 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704908 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64684, fd=3929 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704917 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63280, fd=2909 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704947 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41062, fd=1167 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.704993 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36344, fd=718 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.705018 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57654, fd=3824 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.705054 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62774, fd=2903 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.705103 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48946, fd=2334 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.705117 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39942, fd=3282 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.705145 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49604, fd=3214 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.705163 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32176, fd=332 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.705168 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50384, fd=2491 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.705243 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63690, fd=2978 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.705264 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52260, fd=1981 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.705339 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36908, fd=735 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.705498 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50886, fd=2794 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.705546 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35516, fd=579 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.705580 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50154, fd=1789 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.705613 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39224, fd=991 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.705678 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59102, fd=2537 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.705694 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50302, fd=1685 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.705697 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44248, fd=1463 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.705748 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40422, fd=1096 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.705753 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31606, fd=36 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.705763 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62680, fd=3193 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.705907 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45102, fd=3526 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.705917 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64640, fd=3018 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.705974 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53210, fd=2802 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706005 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57796, fd=3082 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706006 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57130, fd=3099 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706035 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36036, fd=645 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706039 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44456, fd=3509 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706048 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59718, fd=2477 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706124 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47430, fd=1601 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706143 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45728, fd=1452 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706162 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33132, fd=267 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706196 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60868, fd=2584 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706225 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41662, fd=1136 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706236 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52782, fd=2757 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706315 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46274, fd=2345 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706330 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64296, fd=3007 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706334 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48064, fd=1512 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706335 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43244, fd=1369 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706372 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59284, fd=3179 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706382 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31580, fd=37 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706395 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31736, fd=52 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706400 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56534, fd=3808 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706450 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35088, fd=524 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706455 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31686, fd=38 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706506 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46178, fd=1351 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706509 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42822, fd=1296 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706537 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38572, fd=801 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706550 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38462, fd=913 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706594 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41012, fd=3358 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706692 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35956, fd=551 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706736 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56298, fd=2310 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706747 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53088, fd=3755 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706753 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48598, fd=1799 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706775 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55134, fd=3448 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706790 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58774, fd=2502 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706702 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36608, fd=710 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706855 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45700, fd=1518 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706871 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39396, fd=966 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706873 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49776, fd=1777 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706909 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43296, fd=1304 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706931 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40136, fd=1060 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706950 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43910, fd=1385 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.706999 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51358, fd=1760 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707011 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47764, fd=2484 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707037 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41514, fd=3387 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707041 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38948, fd=681 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707119 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61872, fd=3322 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707166 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34372, fd=391 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707212 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60400, fd=3605 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707226 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31668, fd=41 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707251 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46694, fd=3569 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707276 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45266, fd=1251 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707290 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42522, fd=1239 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707307 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42726, fd=3437 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707312 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35634, fd=591 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707393 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39800, fd=793 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707393 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52202, fd=2863 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707453 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31794, fd=49 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707467 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64114, fd=3917 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707476 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61484, fd=3298 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707539 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51808, fd=3727 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707576 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51992, fd=2672 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707589 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37646, fd=819 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707595 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48744, fd=1820 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707612 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36922, fd=643 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707626 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38644, fd=915 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707644 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54276, fd=3424 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707652 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41540, fd=1182 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707677 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40924, fd=1138 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707676 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52376, fd=2716 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707752 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37120, fd=657 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707753 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54874, fd=2046 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707757 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55718, fd=3790 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707782 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42798, fd=1217 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707780 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51576, fd=2843 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707795 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64566, fd=3305 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707809 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47242, fd=1613 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707820 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31570, fd=33 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707873 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33764, fd=313 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707880 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41982, fd=1225 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707938 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50720, fd=1823 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.707966 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32258, fd=103 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.708060 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49168, fd=1849 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.708153 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58310, fd=2472 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.708159 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46838, fd=2388 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.708176 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32780, fd=164 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.708308 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38068, fd=853 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.708366 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63580, fd=2969 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.708452 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45140, fd=1234 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.708514 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44188, fd=2144 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.708542 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51122, fd=2591 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.708795 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53720, fd=2085 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.708881 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52656, fd=3748 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.708893 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48222, fd=1694 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.709114 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32446, fd=119 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.709124 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49314, fd=1728 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.709126 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57006, fd=2264 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.709148 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31874, fd=61 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.709634 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56116, fd=3034 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.709708 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56132, fd=3802 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.709715 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55330, fd=3044 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.709725 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40574, fd=856 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.709721 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58376, fd=3128 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.709751 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44720, fd=1412 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.709814 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54796, fd=2926 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.709894 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46938, fd=2400 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.709949 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59710, fd=3572 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.709966 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60902, fd=2646 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.709987 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53248, fd=2923 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.710054 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43698, fd=2099 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.710112 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64408, fd=3010 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.710113 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53280, fd=3757 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.710231 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64736, fd=3027 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.710248 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63652, fd=2955 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.710254 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35878, fd=570 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.710280 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39660, fd=996 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.710330 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53804, fd=3413 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.710358 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63082, fd=3904 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.710362 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39114, fd=963 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.710372 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55244, fd=2103 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.710389 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60102, fd=3588 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.710409 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37332, fd=724 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.710426 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61868, fd=3892 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.710530 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48642, fd=3620 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.710556 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58796, fd=3841 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.710561 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59282, fd=3557 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.710587 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32032, fd=98 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.710599 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60550, fd=3609 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.710605 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39466, fd=864 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.710717 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45814, fd=3544 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.710724 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31562, fd=31 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.710723 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34620, fd=281 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.710772 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63290, fd=3236 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.710798 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52346, fd=1982 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.710798 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47512, fd=1633 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.710841 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44704, fd=1383 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.710894 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34238, fd=241 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.710929 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64522, fd=2873 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.710936 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39994, fd=3291 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.710951 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55862, fd=2267 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711016 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39208, fd=849 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711021 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54966, fd=2190 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711034 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36726, fd=728 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711055 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54314, fd=2015 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711090 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44186, fd=1460 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711147 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58078, fd=3117 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711173 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57274, fd=2297 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711212 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40590, fd=988 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711227 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60430, fd=2676 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711250 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62980, fd=3903 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711255 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46392, fd=3562 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711269 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64010, fd=3272 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711271 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61354, fd=2771 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711305 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44164, fd=1326 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711355 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57342, fd=3820 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711382 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43636, fd=1333 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711393 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63624, fd=2946 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711401 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55448, fd=2312 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711414 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50190, fd=1830 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711420 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64446, fd=3922 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711462 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64568, fd=2886 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711496 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42206, fd=3435 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711502 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49634, fd=3650 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711499 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54872, fd=3032 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711538 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32874, fd=179 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711535 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50908, fd=3288 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711561 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62586, fd=2893 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711563 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49180, fd=2351 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711579 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56386, fd=2188 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711613 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52328, fd=1987 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711618 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62240, fd=2804 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711636 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41076, fd=1163 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711650 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32638, fd=191 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711667 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42376, fd=1188 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711674 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51386, fd=3320 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711737 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43066, fd=1270 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711751 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41632, fd=1208 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711780 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56330, fd=3070 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711852 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41870, fd=1216 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711855 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31944, fd=85 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711866 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54368, fd=2892 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711877 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64384, fd=3728 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711880 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59958, fd=2664 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711888 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57436, fd=2403 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711919 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45226, fd=2223 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711934 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35588, fd=454 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711945 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50410, fd=1842 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711961 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56870, fd=2395 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711979 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47080, fd=2424 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711983 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41330, fd=953 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711994 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59546, fd=3187 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.711997 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32326, fd=91 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.712017 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42960, fd=3451 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.712094 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38928, fd=688 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.712128 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43626, fd=1414 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.712144 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63378, fd=2906 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.712169 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37080, fd=713 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.712195 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55818, fd=3795 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.712320 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57854, fd=2426 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.712336 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45268, fd=1267 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.712463 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60900, fd=2699 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.712487 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38438, fd=794 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.712569 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59072, fd=2490 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.712585 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36584, fd=743 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.712603 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61348, fd=3634 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.712625 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64648, fd=3019 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.712638 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34498, fd=387 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.712712 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36948, fd=689 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.712714 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64188, fd=3279 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.712813 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38042, fd=601 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.712819 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40248, fd=957 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.712879 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52816, fd=2047 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.712890 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35520, fd=447 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.712912 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36004, fd=565 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.712919 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62186, fd=2694 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.712976 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38642, fd=670 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.712989 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39730, fd=1015 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.712992 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56434, fd=3076 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.713019 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60324, fd=2601 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.713042 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38194, fd=716 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.713135 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44778, fd=1405 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.713139 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51868, fd=1798 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.713212 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61794, fd=3891 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.713236 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35876, fd=609 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.713234 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45874, fd=1477 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.713296 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34070, fd=345 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.713347 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48074, fd=1676 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.713514 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33130, fd=219 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.713532 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55938, fd=3058 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.713533 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46488, fd=2133 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.713564 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64688, fd=3309 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.713608 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51882, fd=1961 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.713643 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43680, fd=1133 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.713569 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56780, fd=3816 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.713654 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62972, fd=2925 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.713696 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46550, fd=2382 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.713698 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40070, fd=3295 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.713761 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58536, fd=3141 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.713771 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35002, fd=508 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.713775 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58778, fd=2434 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.713774 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33622, fd=253 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.713794 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40766, fd=890 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.713816 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37562, fd=745 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.713827 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61496, fd=2766 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.713855 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64140, fd=2838 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.713867 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50512, fd=1801 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.713910 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62664, fd=2898 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.713913 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55584, fd=2971 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.713927 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61124, fd=2719 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.713984 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47018, fd=2412 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.714003 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42824, fd=1205 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.714072 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40598, fd=980 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.714096 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51364, fd=1767 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.714111 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44646, fd=1187 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.714130 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63268, fd=2756 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.714180 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53290, fd=2086 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.714225 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59272, fd=2581 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.714233 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54722, fd=2908 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.714308 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37714, fd=783 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.714314 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47758, fd=3593 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.714318 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44184, fd=1980 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.714417 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50946, fd=1840 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.714429 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38584, fd=740 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.714469 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50726, fd=2555 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.714506 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55170, fd=2199 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.714554 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48464, fd=1675 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.714577 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42030, fd=1186 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.714583 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48066, fd=2258 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.714617 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37806, fd=854 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.714629 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62230, fd=2798 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.714652 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35484, fd=545 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.714691 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56994, fd=2260 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.714694 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57472, fd=2389 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.714699 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59644, fd=2559 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.714742 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48548, fd=1721 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.714752 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49544, fd=2375 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.714802 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51644, fd=2642 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.714836 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59970, fd=3582 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.714861 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45220, fd=1541 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.714862 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62342, fd=2816 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.714887 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41544, fd=1178 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.714959 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32760, fd=146 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.714969 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57682, fd=2338 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.715019 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53994, fd=3766 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.715064 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50014, fd=2429 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.715087 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32286, fd=110 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.715119 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45084, fd=1416 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.715148 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60732, fd=2679 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.715169 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53814, fd=2140 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.715175 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51334, fd=3316 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.715194 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37592, fd=734 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.715236 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61560, fd=2776 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.715260 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60830, fd=3617 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.715277 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36012, fd=651 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.715279 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59922, fd=2493 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.715315 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33484, fd=221 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.715319 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45562, fd=1462 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.715354 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34250, fd=381 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.715364 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63908, fd=3714 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.715370 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51838, fd=3715 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.715407 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46070, fd=3552 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.715409 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60318, fd=3223 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.715514 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47552, fd=1453 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.715611 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51140, fd=1864 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.715623 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63586, fd=2973 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.715625 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52568, fd=3363 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.715644 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50656, fd=1707 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.715662 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49048, fd=1755 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.715689 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53978, fd=2164 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.715767 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39598, fd=1023 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.715874 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50060, fd=2449 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.715906 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35570, fd=510 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.715839 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59080, fd=3551 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.715997 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34534, fd=273 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.715997 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56706, fd=3811 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.716018 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38548, fd=1659 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.716061 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58576, fd=3143 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.716089 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36526, fd=587 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.716228 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39908, fd=1070 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.716268 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49782, fd=2397 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.716282 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57880, fd=3114 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.716392 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40436, fd=3328 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.716397 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58162, fd=2425 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.716406 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61842, fd=2817 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.716443 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37078, fd=737 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.716449 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62660, fd=3899 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.716472 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36478, fd=726 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.716499 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55236, fd=2290 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.716521 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44190, fd=3495 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.716533 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43648, fd=1354 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.716539 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57192, fd=2342 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.716540 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41496, fd=1190 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.716593 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42032, fd=1141 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.716609 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34660, fd=469 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.716808 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46780, fd=1391 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.716816 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44564, fd=3499 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.716867 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42842, fd=1997 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.716897 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34544, fd=392 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.716894 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49500, fd=1719 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.716897 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37446, fd=693 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.716932 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31902, fd=92 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.716948 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33092, fd=204 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.717000 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40946, fd=1037 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.717052 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35110, fd=317 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.717132 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39108, fd=830 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.717183 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38020, fd=595 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.717200 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55754, fd=3005 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.717210 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37014, fd=744 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.717243 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46634, fd=2352 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.717252 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41044, fd=1160 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.717280 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37762, fd=802 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.717305 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41542, fd=3372 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.717333 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52806, fd=3751 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.717364 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40236, fd=1033 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.717398 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45848, fd=1334 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.717427 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48132, fd=2239 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.717438 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48860, fd=1591 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.717491 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49800, fd=1890 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.717583 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61216, fd=3881 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.717658 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40748, fd=986 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.717656 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53464, fd=1930 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.717704 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33482, fd=244 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.717705 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33746, fd=297 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.717717 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45714, fd=1495 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.717764 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46386, fd=1593 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.717794 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33098, fd=213 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.717929 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31676, fd=66 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.717930 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32370, fd=95 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.717959 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42572, fd=1286 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.717983 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36216, fd=634 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.718017 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48894, fd=1567 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.718032 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32840, fd=138 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.718097 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31898, fd=86 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.718107 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32218, fd=116 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.718136 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47674, fd=1644 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.718151 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44138, fd=1953 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.718231 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47556, fd=3587 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.718256 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46990, fd=2191 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.718279 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39946, fd=1043 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.718296 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39032, fd=810 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.718320 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45134, fd=2024 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.718331 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43130, fd=2043 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.718348 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48224, fd=3604 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.718398 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43642, fd=1316 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.718443 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33788, fd=293 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.718471 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43204, fd=1364 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.718467 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42480, fd=1258 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.718570 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50056, fd=1785 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.718617 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42096, fd=3416 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.718667 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43818, fd=3483 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.718667 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52970, fd=3753 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.718686 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36138, fd=417 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.718723 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35400, fd=540 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.718727 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41310, fd=1030 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.718770 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55516, fd=2234 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.718799 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48628, fd=1790 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.718823 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42364, fd=1021 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.718853 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50750, fd=1826 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.718884 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38094, fd=878 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.718903 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57638, fd=2454 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.718918 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39250, fd=721 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.718926 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33512, fd=238 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.718936 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43118, fd=1291 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.718958 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38882, fd=3206 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.718967 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52670, fd=2726 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.718979 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49108, fd=2340 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.719101 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35000, fd=482 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.719103 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58336, fd=3126 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.719224 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32660, fd=175 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.719227 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47044, fd=1626 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.719239 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59522, fd=3853 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.719307 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63788, fd=2793 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.719408 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46324, fd=1496 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.719407 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56284, fd=3804 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.719411 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34970, fd=300 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.719422 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36666, fd=633 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.719550 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55946, fd=3031 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.719562 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39686, fd=1002 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.719589 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43308, fd=1320 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.719604 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34330, fd=298 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.719628 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40168, fd=1042 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.719667 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32088, fd=75 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.719689 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53974, fd=2101 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.719713 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47328, fd=1565 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.719750 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35148, fd=522 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.719752 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50260, fd=1788 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.719753 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49282, fd=1748 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.719763 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36724, fd=672 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.719816 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59124, fd=2498 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.719823 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39684, fd=877 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.719839 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43292, fd=1394 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.719904 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63512, fd=2961 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.719911 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53098, fd=2905 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.719924 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35812, fd=483 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.719971 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42226, fd=3425 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.719974 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37212, fd=747 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.720036 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44306, fd=1381 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.720038 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42614, fd=1185 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.720055 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59564, fd=3567 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.720150 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42742, fd=1090 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.720152 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46718, fd=2149 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.720195 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56536, fd=2228 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.720307 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39192, fd=843 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.720354 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55064, fd=2076 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.720394 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47930, fd=1703 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.720417 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51646, fd=3717 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.720442 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62394, fd=3354 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.720476 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46068, fd=2277 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.720474 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32178, fd=160 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.720568 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33108, fd=259 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.720565 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49698, fd=3222 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.720592 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61314, fd=3884 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.720600 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60432, fd=3867 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.720605 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40438, fd=1845 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.720649 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35652, fd=567 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.720678 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37678, fd=777 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.720715 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54586, fd=3014 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.720723 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33744, fd=193 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.720740 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51206, fd=2602 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.720762 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53526, fd=3400 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.720781 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43842, fd=1441 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.720790 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57072, fd=2336 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.720814 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58638, fd=3837 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.720825 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34730, fd=294 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.720922 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52232, fd=1984 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.721131 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48394, fd=1764 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.721128 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44344, fd=2006 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.721185 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38500, fd=901 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.721232 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45438, fd=1481 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.721291 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44850, fd=2172 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.721362 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63212, fd=2890 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.721374 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61720, fd=3887 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.721601 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38158, fd=879 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.721629 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60872, fd=2589 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.721646 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47344, fd=2437 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.721658 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34230, fd=340 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.721792 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61550, fd=3303 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.721832 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47796, fd=1470 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.721888 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45702, fd=2259 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.721887 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33118, fd=231 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.721950 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62262, fd=3666 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.722016 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38612, fd=1876 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.722050 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59962, fd=2594 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.722083 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37420, fd=615 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.722122 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46744, fd=1611 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.722223 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59528, fd=2622 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.722214 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47984, fd=1489 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.722299 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34708, fd=426 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.722326 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55706, fd=2249 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.722337 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52358, fd=1848 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.722383 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53222, fd=2075 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.722388 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54296, fd=2880 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.722521 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43004, fd=3443 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.722535 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42560, fd=1242 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.722543 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55208, fd=2097 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.722586 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59118, fd=2543 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.722596 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58540, fd=3098 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.722608 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56570, fd=2222 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.722616 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39566, fd=1786 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.722621 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62054, fd=3660 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.722843 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60302, fd=2607 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.722937 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38454, fd=920 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.722940 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51378, fd=3706 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.722966 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44374, fd=2161 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.722967 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38998, fd=711 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.722985 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32368, fd=218 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.723175 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43422, fd=1321 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.723248 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49372, fd=2362 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.723347 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35666, fd=535 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.723345 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50938, fd=3684 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.723501 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57570, fd=3075 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.723531 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41010, fd=923 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.723727 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33728, fd=331 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.723777 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61162, fd=2615 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.723952 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40112, fd=922 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.724002 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37916, fd=763 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.724075 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48296, fd=3602 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.724184 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53750, fd=1945 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.724288 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58096, fd=2451 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.724285 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61884, fd=2825 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.724698 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57972, fd=2356 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.724837 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52986, fd=3380 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.724883 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37536, fd=626 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.725054 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58892, fd=3157 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.725113 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62682, fd=2827 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.725174 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56354, fd=3482 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.725334 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36440, fd=648 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.725353 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55000, fd=3777 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.725432 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31834, fd=82 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.725694 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51584, fd=3710 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.725721 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38044, fd=918 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.725746 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38738, fd=813 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.725778 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40290, fd=964 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.725842 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57362, fd=3103 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.725889 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34904, fd=442 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.725899 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55444, fd=2111 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.726048 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55856, fd=3016 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.727015 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65150, fd=3971 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.728026 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1786, fd=4090 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.728220 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1680, fd=4113 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:03.728362 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1540, fd=4016 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.998101 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56180, fd=2147 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.998102 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42822, fd=133 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.998154 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52292, fd=3423 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.998165 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41574, fd=35 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.998230 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4820, fd=2903 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.998256 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5274, fd=2935 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.998361 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52902, fd=1170 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.998510 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42048, fd=60 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.998514 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3666, fd=2159 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.998503 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41792, fd=50 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.998549 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59576, fd=1705 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.998597 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42074, fd=67 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.998646 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58202, fd=1545 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.998708 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45284, fd=379 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.998710 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57812, fd=2201 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.998724 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62824, fd=2561 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.998730 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5820, fd=2292 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.998776 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60682, fd=3652 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.998793 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58472, fd=1356 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.998874 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61714, fd=1798 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.998925 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64278, fd=2596 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.998957 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51714, fd=1038 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.998999 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48590, fd=3304 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.999043 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2916, fd=2790 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.999090 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1600, fd=2045 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.999131 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53558, fd=1222 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.999141 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49316, fd=834 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.999184 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44148, fd=266 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.999351 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49818, fd=772 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.999439 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2412, fd=2089 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.999650 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42484, fd=124 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.999699 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53376, fd=985 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.999729 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46822, fd=563 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.999730 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48358, fd=1418 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.999783 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5488, fd=3790 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.999856 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6770, fd=3818 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.999871 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57246, fd=3230 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.999894 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63336, fd=1749 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:10.999949 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48788, fd=837 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.000012 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1170, fd=2716 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.000028 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58944, fd=2317 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.000170 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3928, fd=2942 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.000261 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45498, fd=409 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.000305 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61122, fd=2471 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.000610 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54366, fd=1107 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.000614 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64816, fd=1997 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.000730 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49020, fd=745 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.000782 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48106, fd=641 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.000795 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55990, fd=3214 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.000816 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63296, fd=3697 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.000823 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7170, fd=3823 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.000844 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62344, fd=3305 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.000868 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65166, fd=2783 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.000866 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44636, fd=433 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.000880 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43932, fd=327 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.000898 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43110, fd=253 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.000961 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57200, fd=1281 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.001007 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41934, fd=86 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.001045 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60902, fd=1727 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.001059 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47664, fd=871 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.001067 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2004, fd=3409 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.001066 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63834, fd=1984 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.001146 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41824, fd=54 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.001175 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58628, fd=1591 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.001205 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8416, fd=3109 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.001210 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54360, fd=1278 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.001241 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6654, fd=3816 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.001265 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52496, fd=3170 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.001264 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41650, fd=34 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.001368 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42356, fd=88 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.001450 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60102, fd=1681 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.001488 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10430, fd=3137 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.001529 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56178, fd=1439 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.001567 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6084, fd=3534 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.001636 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49648, fd=757 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.001662 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48230, fd=1413 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.001712 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49140, fd=3321 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.001748 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46796, fd=602 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.001795 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9624, fd=3619 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.001794 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57552, fd=1323 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.001817 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55490, fd=3207 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.001866 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10198, fd=3867 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.001897 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6278, fd=2325 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.001896 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58096, fd=2221 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.001901 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56540, fd=3538 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.001903 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56656, fd=1450 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.001906 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10050, fd=3067 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.002022 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51394, fd=3151 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.002053 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53386, fd=1216 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.002065 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50200, fd=1023 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.002085 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45220, fd=444 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.002152 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63788, fd=1974 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.002169 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3658, fd=2174 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.002196 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61374, fd=3661 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.002214 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52944, fd=1151 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.002236 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57628, fd=3579 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.002290 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60348, fd=1707 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.002315 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56702, fd=2097 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.002343 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8014, fd=2286 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.002421 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54952, fd=1317 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.002505 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62822, fd=3687 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.002609 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54584, fd=1282 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.002617 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9390, fd=2386 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.002705 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7592, fd=2258 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.002909 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45720, fd=442 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.002935 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61846, fd=1809 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.003071 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10406, fd=3075 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.003100 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55580, fd=2017 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.003115 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62378, fd=3307 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.003115 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64186, fd=2729 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.003123 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5572, fd=3006 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.003137 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9102, fd=3073 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.003332 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52024, fd=1059 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.003353 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46258, fd=551 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.003435 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50854, fd=969 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.003508 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51902, fd=1708 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.003658 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47250, fd=839 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.003666 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44584, fd=315 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.003678 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10276, fd=2623 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.003686 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64706, fd=1823 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.004078 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43516, fd=467 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.004088 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4606, fd=2869 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.004349 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59790, fd=2388 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.004644 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53862, fd=1238 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.004981 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46088, fd=726 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.005054 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50548, fd=945 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.005192 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61852, fd=3295 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.005220 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60854, fd=3281 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.005264 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59204, fd=1604 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.005320 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42342, fd=178 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.005340 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41576, fd=45 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.005362 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44904, fd=473 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.005364 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46374, fd=555 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.005404 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55224, fd=1369 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.005489 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53600, fd=1243 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.005524 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44416, fd=330 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.005538 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65426, fd=3732 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.005547 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59334, fd=1643 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.005572 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53084, fd=1180 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.005711 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63416, fd=3324 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.005731 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2112, fd=3417 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.005749 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3440, fd=2814 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.005750 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45588, fd=690 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.005794 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61360, fd=3290 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.005812 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63350, fd=1737 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.005820 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65406, fd=2714 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.005844 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9878, fd=3129 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.005880 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64352, fd=2743 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.005933 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41904, fd=117 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.005952 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42696, fd=191 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.005965 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41890, fd=74 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.006013 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5352, fd=3508 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.006012 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47784, fd=913 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.006034 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43444, fd=270 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.006045 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4722, fd=2965 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.006045 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64104, fd=1937 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.006206 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57390, fd=2237 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.006222 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57950, fd=2287 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.006223 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49472, fd=1520 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.006245 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43966, fd=284 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.006269 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1874, fd=1895 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.006276 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8772, fd=3013 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.006296 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56844, fd=3553 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.006308 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7674, fd=2263 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.006310 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49982, fd=3349 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.006338 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5870, fd=2955 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.006366 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62418, fd=1670 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.006395 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6788, fd=3065 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.006452 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59774, fd=1441 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.006533 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60352, fd=2399 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.006636 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61308, fd=3287 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.006639 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57104, fd=1466 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.006675 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41696, fd=56 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.006730 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5072, fd=2887 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.006763 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3376, fd=1966 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.006762 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7256, fd=3080 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.006797 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48970, fd=759 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.006803 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63954, fd=2634 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.006846 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44594, fd=565 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.006848 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58126, fd=3595 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.006855 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51258, fd=1108 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.006852 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2894, fd=2821 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.006876 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48694, fd=793 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.006879 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58622, fd=1586 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.006895 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50376, fd=981 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.006894 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49268, fd=899 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.006893 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62744, fd=2593 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.006929 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58614, fd=2314 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007000 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60324, fd=1701 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007014 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43060, fd=164 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007057 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42016, fd=110 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007097 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4128, fd=2845 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007105 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10344, fd=2713 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007107 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46526, fd=771 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007113 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4284, fd=2854 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007131 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45210, fd=357 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007138 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44086, fd=345 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007141 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1746, fd=2771 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007143 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51928, fd=1139 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007190 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42170, fd=126 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007194 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62234, fd=3674 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007206 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2428, fd=3434 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007239 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8418, fd=3041 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007247 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56076, fd=1398 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007250 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54882, fd=3199 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007261 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53460, fd=1225 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007308 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51530, fd=1024 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007305 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47962, fd=1303 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007312 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5078, fd=3499 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007315 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4808, fd=2379 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007332 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6326, fd=3040 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007340 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52548, fd=3171 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007361 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61736, fd=1838 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007431 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65018, fd=2038 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007437 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47248, fd=789 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007454 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55452, fd=2013 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007462 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53066, fd=1183 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007487 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57570, fd=3573 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007504 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4310, fd=2877 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007509 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5476, fd=2283 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007521 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47500, fd=587 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007554 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47680, fd=701 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007692 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54072, fd=3481 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007698 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41776, fd=53 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007704 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3840, fd=3765 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007864 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47054, fd=618 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007906 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63216, fd=3694 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.007971 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2956, fd=2124 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.008099 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8050, fd=2295 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.008104 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60872, fd=1777 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.008120 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3844, fd=3763 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.008130 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50956, fd=3147 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.008141 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43542, fd=226 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.008175 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48246, fd=700 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.008240 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48492, fd=709 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.008300 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45622, fd=475 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.008324 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2516, fd=3435 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.008326 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6848, fd=3819 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.008334 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5954, fd=3800 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.008511 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55860, fd=1187 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.008545 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64924, fd=3357 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.008557 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1312, fd=2029 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.008585 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46242, fd=538 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.008603 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63670, fd=1764 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.008609 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52580, fd=1763 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.008455 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64448, fd=1977 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.008659 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49086, fd=825 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.008684 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1400, fd=3739 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.008708 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49828, fd=889 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.008771 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62982, fd=1860 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.008793 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8774, fd=3052 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.008800 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59716, fd=1715 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.008835 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58570, fd=3612 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.008837 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46204, fd=592 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.008849 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41820, fd=70 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.008935 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54542, fd=1308 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.008988 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59236, fd=1609 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.009135 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55106, fd=3498 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.009167 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47662, fd=671 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.009201 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9542, fd=3096 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.009220 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64034, fd=1995 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.009232 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44578, fd=388 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.009243 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7362, fd=2410 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.009252 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46688, fd=599 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.009290 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53884, fd=3473 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.009315 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10010, fd=2598 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.009713 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6392, fd=3537 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.009718 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47148, fd=1335 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.009870 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10248, fd=3133 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.009933 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59416, fd=3259 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.009975 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5458, fd=2107 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010066 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48762, fd=820 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010073 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46648, fd=655 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010089 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43576, fd=283 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010135 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60460, fd=2403 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010137 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10148, fd=3132 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010144 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57322, fd=2148 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010202 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4974, fd=2885 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010209 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49604, fd=861 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010234 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46706, fd=804 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010243 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4434, fd=2051 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010252 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42412, fd=128 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010257 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52064, fd=929 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010287 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45098, fd=456 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010313 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7326, fd=2964 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010316 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63110, fd=1723 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010366 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46218, fd=492 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010361 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56796, fd=1449 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010367 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43220, fd=244 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010370 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5974, fd=3026 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010412 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44096, fd=255 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010424 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56552, fd=2195 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010447 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8332, fd=3837 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010457 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42920, fd=129 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010465 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61844, fd=1815 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010473 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45136, fd=481 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010515 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51980, fd=1053 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010548 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64366, fd=1944 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010549 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54362, fd=1297 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010559 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5316, fd=2898 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010563 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61372, fd=1570 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010575 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62512, fd=2541 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010617 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60138, fd=2440 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010633 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5846, fd=2303 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010715 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9814, fd=3061 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010770 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8658, fd=3843 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010777 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57944, fd=2271 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010815 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55182, fd=1357 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010858 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42708, fd=221 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010892 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48854, fd=842 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010922 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42264, fd=98 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010923 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54040, fd=1256 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010919 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55736, fd=2042 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.010921 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53416, fd=1229 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.011005 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56344, fd=1414 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.011009 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9248, fd=2542 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.011019 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50142, fd=1030 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.011016 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57858, fd=2196 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.011057 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53582, fd=1227 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.011082 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49366, fd=840 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.011089 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59898, fd=2397 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.011125 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6822, fd=2989 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.011139 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62030, fd=1833 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.011170 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55656, fd=1182 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.011170 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7874, fd=3578 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.011173 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58874, fd=3622 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.011169 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42026, fd=80 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.011183 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61490, fd=2498 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.011213 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3480, fd=2904 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.011227 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56376, fd=3536 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.011246 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48252, fd=1334 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.011278 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53012, fd=3183 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.011351 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51466, fd=1672 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.011361 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57070, fd=1268 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.011428 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2986, fd=3756 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.011620 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64884, fd=2021 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.011673 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50348, fd=3360 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.011745 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45634, fd=421 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.011743 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2472, fd=2775 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.011763 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6338, fd=3807 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.011793 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42488, fd=156 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.011836 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64062, fd=1918 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.011838 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63042, fd=1869 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.011841 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3976, fd=2858 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.011900 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8202, fd=2302 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.011905 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3718, fd=3468 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.011915 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48182, fd=735 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.011936 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50940, fd=1034 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.011960 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50678, fd=1057 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.011966 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4806, fd=3496 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.012006 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45620, fd=697 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.012091 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60962, fd=3285 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.012135 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4250, fd=2953 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.012150 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2062, fd=3415 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.012195 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63552, fd=2609 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.012244 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63594, fd=3699 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.012281 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64458, fd=1950 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.012351 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52532, fd=1754 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.012397 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47256, fd=1342 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.012435 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57350, fd=1304 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.012538 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6454, fd=3043 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.012546 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52408, fd=1744 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.012614 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47694, fd=1289 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.012653 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51256, fd=1654 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.012724 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7754, fd=3832 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.012725 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59622, fd=1646 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.012928 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43072, fd=228 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.012961 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8978, fd=3850 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.012975 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58406, fd=3241 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.013065 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51770, fd=1118 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.013070 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53974, fd=1254 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.013084 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43662, fd=291 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.013160 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56770, fd=2205 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.013162 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56286, fd=1434 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.013406 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59082, fd=1627 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.013455 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62590, fd=1858 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.013552 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48610, fd=694 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.013664 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65532, fd=2806 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.014043 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12278, fd=3987 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.014077 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12488, fd=4021 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.014082 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11362, fd=3929 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.014091 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60848, fd=1551 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.014096 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44034, fd=360 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.014104 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11302, fd=3934 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.014157 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52914, fd=1166 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.014189 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64958, fd=1983 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.014189 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6902, fd=2382 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.014205 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42218, fd=145 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.014254 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10956, fd=3926 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.014294 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11128, fd=4070 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.014360 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11390, fd=3924 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.014468 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11874, fd=4110 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.014497 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11800, fd=4008 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.014557 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11644, fd=3996 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.014646 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1626, fd=2096 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.014695 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5686, fd=2914 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.014715 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12440, fd=4017 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.014733 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11320, fd=4054 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.014747 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46244, fd=589 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.014781 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12110, fd=4055 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.014820 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53780, fd=1022 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.014831 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12714, fd=4123 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.014877 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52792, fd=1795 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.014884 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12774, fd=4045 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.014898 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10694, fd=3876 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.014896 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12646, fd=4040 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.014928 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63858, fd=3706 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.014946 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54586, fd=3195 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.014979 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11002, fd=3958 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015042 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43158, fd=251 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015087 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11960, fd=3973 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015127 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11038, fd=3928 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015165 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63298, fd=1926 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015180 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12016, fd=4001 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015186 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10720, fd=3900 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015195 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49826, fd=1546 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015220 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1676, fd=2820 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015286 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56726, fd=1459 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015314 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10642, fd=3898 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015315 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47766, fd=904 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015306 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12048, fd=4087 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015323 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12082, fd=4051 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015329 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57302, fd=1489 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015350 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50480, fd=987 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015368 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51016, fd=1065 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015369 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12604, fd=4024 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015373 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10882, fd=3941 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015379 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41746, fd=76 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015399 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12574, fd=3988 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015425 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9226, fd=2648 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015462 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41640, fd=65 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015473 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12776, fd=4125 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015596 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12166, fd=4093 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015627 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7382, fd=3090 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015648 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60584, fd=1728 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015641 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10596, fd=3878 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015668 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10666, fd=3875 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015696 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11530, fd=3967 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015698 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64294, fd=1952 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015711 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12688, fd=4121 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015728 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47242, fd=851 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015735 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12746, fd=4084 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015762 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12336, fd=4012 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015778 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7208, fd=2395 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015784 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11416, fd=4094 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015830 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5152, fd=2933 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015857 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7644, fd=2532 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015928 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61128, fd=1762 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015968 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12420, fd=4119 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.015987 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12240, fd=4096 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016015 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10848, fd=3895 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016094 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62812, fd=1855 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016135 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12384, fd=3991 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016143 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45218, fd=422 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016136 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11458, fd=4097 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016153 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52214, fd=3418 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016154 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6674, fd=2353 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016157 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2114, fd=2853 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016138 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11574, fd=4101 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016189 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4664, fd=2968 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016207 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11162, fd=3918 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016238 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11918, fd=4080 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016242 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8886, fd=3057 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016274 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12538, fd=4073 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016293 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54982, fd=1338 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016295 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42502, fd=99 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016314 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55602, fd=3519 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016346 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11688, fd=3997 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016388 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44624, fd=413 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016412 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3608, fd=2169 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016420 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12810, fd=4066 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016426 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42244, fd=154 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016461 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60032, fd=3268 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016486 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46736, fd=689 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016580 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53302, fd=1217 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016604 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62240, fd=1824 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016601 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63352, fd=2670 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016629 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58496, fd=1566 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016633 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12196, fd=4115 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016686 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49424, fd=3327 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016697 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1244, fd=3372 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016716 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49924, fd=796 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016712 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11082, fd=3912 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016727 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11258, fd=4052 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016811 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8518, fd=3010 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016812 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8022, fd=2468 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016839 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1510, fd=2812 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016911 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11838, fd=4109 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016943 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64172, fd=1924 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016950 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44536, fd=392 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016962 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55604, fd=1377 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.016989 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11776, fd=4006 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.017024 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57884, fd=1538 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.017026 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60056, fd=1735 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.017087 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54356, fd=1931 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.017100 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43594, fd=348 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.017107 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61446, fd=1580 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.017191 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10566, fd=3894 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.017296 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53170, fd=1822 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.017306 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6196, fd=2168 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.017316 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12816, fd=4071 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.017323 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12130, fd=4007 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.017355 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10784, fd=3901 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.017371 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11226, fd=3925 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.017371 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11608, fd=3994 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.017382 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56230, fd=2063 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.017396 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11742, fd=3953 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.017424 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65318, fd=2685 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.017430 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3636, fd=2913 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.017446 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11500, fd=3938 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.017587 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48320, fd=1442 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.017589 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53618, fd=1005 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.017603 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11192, fd=3933 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.017634 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41634, fd=44 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.017680 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61924, fd=1614 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.017726 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60588, fd=2456 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.017767 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52202, fd=3163 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.017810 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45832, fd=489 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.017841 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49302, fd=823 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.017874 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12796, fd=4108 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.017944 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47770, fd=909 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.017999 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43100, fd=222 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018009 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58942, fd=1663 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018015 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41568, fd=33 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018023 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42010, fd=103 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018056 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45684, fd=435 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018064 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61708, fd=1794 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018063 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3206, fd=2834 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018167 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57150, fd=1477 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018168 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10910, fd=3905 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018191 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48870, fd=812 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018213 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59626, fd=3641 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018261 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49708, fd=886 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018323 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42498, fd=189 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018352 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54126, fd=1074 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018361 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41734, fd=49 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018421 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42832, fd=115 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018488 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44170, fd=310 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018510 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47298, fd=724 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018468 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62954, fd=2635 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018593 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44870, fd=408 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018628 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42734, fd=165 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018646 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46436, fd=576 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018644 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42146, fd=112 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018649 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41684, fd=46 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018696 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60916, fd=1783 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018702 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51592, fd=1092 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018728 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4130, fd=3478 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018734 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63784, fd=3328 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018756 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65120, fd=2049 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018803 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56666, fd=3545 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018814 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45002, fd=361 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018816 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59676, fd=2383 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018886 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3140, fd=2804 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018921 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56216, fd=2142 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018937 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43708, fd=239 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018960 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56446, fd=2175 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018972 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44240, fd=372 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018981 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60996, fd=3283 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.018995 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2338, fd=3428 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.019018 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55204, fd=2074 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.019023 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42306, fd=105 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.019058 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41606, fd=39 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.019086 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52468, fd=1748 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.019115 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3414, fd=2842 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.019172 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59110, fd=1631 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.019207 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53940, fd=1258 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.019216 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9930, fd=2594 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.019290 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62448, fd=3309 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.019291 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46488, fd=644 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.019300 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41850, fd=77 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.019316 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45458, fd=471 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.019319 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54612, fd=1128 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.019371 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51898, fd=1048 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.019377 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7520, fd=3831 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.019381 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47038, fd=706 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.019395 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50242, fd=3353 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.019409 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3900, fd=2208 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.019438 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59540, fd=1700 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.019451 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44448, fd=303 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.019456 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2912, fd=2824 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.019538 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6974, fd=3077 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.019592 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64132, fd=3338 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.019635 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42012, fd=72 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.019655 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6482, fd=3543 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.019665 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54550, fd=1331 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.019727 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57960, fd=3590 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.019752 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52968, fd=3180 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.019769 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55762, fd=2059 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.019775 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2632, fd=2209 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.019781 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64778, fd=2647 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.019848 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48836, fd=786 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.019970 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49078, fd=794 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.019973 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2416, fd=2184 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.019982 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56872, fd=3556 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.020002 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51288, fd=1068 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.020008 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55178, fd=1343 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.020037 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9702, fd=3621 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.020032 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4470, fd=3772 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.020039 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64614, fd=2622 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.020068 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64620, fd=1982 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.020093 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10108, fd=2452 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.020131 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65124, fd=2706 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.020155 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1112, fd=2712 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.020360 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48318, fd=827 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.020363 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48560, fd=715 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.020386 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58608, fd=2284 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.020394 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47550, fd=657 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.020417 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1044, fd=2733 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.020419 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53482, fd=997 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.020435 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5996, fd=3525 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.020457 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62544, fd=2549 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.020509 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9418, fd=2546 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.020545 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1888, fd=1886 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.020590 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52706, fd=1780 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.020622 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46010, fd=518 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.020632 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58610, fd=2274 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.020647 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1614, fd=2768 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.020663 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61940, fd=1828 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.020667 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58102, fd=1540 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.020707 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61404, fd=3663 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.020834 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2060, fd=1891 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.020892 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51660, fd=3402 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.020902 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46850, fd=672 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.020971 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50766, fd=964 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.020970 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63560, fd=2614 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.020976 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63428, fd=1873 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.020993 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49584, fd=931 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.021021 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43400, fd=263 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.021035 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49632, fd=941 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.021084 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8792, fd=3846 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.021109 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47208, fd=547 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.021120 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51590, fd=3400 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.021146 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6422, fd=3809 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.021187 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3986, fd=2315 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.021211 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58888, fd=2334 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.021235 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41976, fd=64 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.021255 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60964, fd=1738 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.021264 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4962, fd=2977 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.021331 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49090, fd=1487 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.021338 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8412, fd=2499 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.021386 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2768, fd=2218 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.021400 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59912, fd=1720 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.021413 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50526, fd=1042 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.021416 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43936, fd=278 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.021410 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4534, fd=2888 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.021424 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53714, fd=1251 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.021431 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45308, fd=438 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.021439 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59148, fd=2321 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.021441 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63014, fd=3689 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.021444 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60298, fd=2444 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.021515 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3050, fd=2797 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.021588 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55192, fd=2069 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.021745 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7980, fd=3019 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.021779 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48198, fd=1397 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.021801 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42110, fd=132 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.021801 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61382, fd=1816 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.021861 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57842, fd=1530 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.021892 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56330, fd=3217 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.021898 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60462, fd=1751 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.022007 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9122, fd=2621 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.022028 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54186, fd=1270 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.022059 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42350, fd=118 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.022067 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64312, fd=3715 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.022084 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51314, fd=3388 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.022094 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50168, fd=822 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.022092 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58392, fd=2264 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.022151 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45062, fd=441 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.022206 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57424, fd=1483 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.022562 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5972, fd=3017 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.022593 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6872, fd=2496 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.022636 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57306, fd=1531 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.022645 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41706, fd=47 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.022686 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41844, fd=63 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.022726 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3536, fd=2846 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.022759 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56806, fd=1440 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.022811 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46690, fd=783 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.022845 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42646, fd=161 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.022857 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4998, fd=3777 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.022886 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64862, fd=2692 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.022885 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65362, fd=2694 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.022987 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45570, fd=512 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.023028 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52742, fd=1785 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.023038 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5422, fd=3514 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.023055 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51024, fd=873 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.023143 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61938, fd=1623 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.023212 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46084, fd=485 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.023216 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52174, fd=3164 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.023244 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5420, fd=2941 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.023353 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63132, fd=2657 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.023420 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48638, fd=1468 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.023472 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1276, fd=2747 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.023672 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48054, fd=1386 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.023787 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44520, fd=381 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.023909 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50694, fd=1620 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.023967 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47658, fd=666 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.024402 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2142, fd=2792 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.024571 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63884, fd=2629 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.024614 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59772, fd=3265 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.024628 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44056, fd=293 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.024681 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54774, fd=1956 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.024988 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43446, fd=218 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.024996 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54736, fd=1301 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.025019 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49854, fd=963 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.025087 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8176, fd=2483 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.025108 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58050, fd=1548 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.025179 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1922, fd=2836 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.025327 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43024, fd=227 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.025372 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42234, fd=104 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.025382 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1508, fd=2815 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.025407 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1756, fd=2058 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.025418 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53198, fd=1189 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.025532 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10370, fd=3072 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.025553 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53658, fd=1239 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.025557 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46994, fd=628 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.025570 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50008, fd=1559 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.025669 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44236, fd=363 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.025683 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45830, fd=530 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.025700 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43762, fd=282 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.025760 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42710, fd=200 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.025798 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61858, fd=2513 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.025831 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44858, fd=344 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.025867 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4254, fd=2340 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.025907 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54706, fd=1300 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.025916 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49840, fd=1013 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.025930 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64940, fd=2777 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.025953 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63466, fd=2600 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.025982 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48936, fd=983 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026049 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65480, fd=2081 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026075 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7296, fd=3083 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026089 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54194, fd=1269 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026097 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62704, fd=3685 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026111 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2564, fd=2778 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026136 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58616, fd=2293 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026156 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57404, fd=3232 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026202 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6246, fd=2932 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026229 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61074, fd=2459 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026259 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59214, fd=1615 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026282 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4140, fd=2225 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026298 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8608, fd=3594 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026298 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51626, fd=3159 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026347 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5166, fd=3786 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026351 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54042, fd=1280 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026391 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64390, fd=3716 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026409 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9494, fd=2398 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026406 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1776, fd=2062 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026409 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55718, fd=2109 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026441 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4822, fd=3774 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026443 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56900, fd=1473 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026520 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45278, fd=474 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026525 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64208, fd=3343 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026561 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65344, fd=2690 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026534 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63016, fd=3315 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026577 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10412, fd=2717 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026590 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62506, fd=3679 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026592 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42014, fd=71 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026588 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58310, fd=2269 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026597 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45282, fd=452 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026629 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63964, fd=2708 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026647 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3670, fd=1986 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026678 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6324, fd=3034 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026721 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63266, fd=2592 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026809 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7248, fd=2510 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026819 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48336, fd=751 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026846 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10208, fd=3633 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026910 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43082, fd=294 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026924 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51988, fd=1147 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026929 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63832, fd=2688 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026937 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61362, fd=2491 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026939 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4692, fd=2900 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026938 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7710, fd=3095 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.026969 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47486, fd=645 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.027004 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9770, fd=2425 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.027045 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5884, fd=2127 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.027078 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7734, fd=2539 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.027093 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2682, fd=3753 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.027114 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2812, fd=1938 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.027169 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47322, fd=629 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.027198 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52864, fd=3178 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.027241 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3242, fd=2807 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.027246 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51008, fd=3382 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.027277 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61598, fd=2519 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.027306 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60892, fd=3280 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.027317 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45858, fd=458 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.027345 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48044, fd=687 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.027367 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42450, fd=127 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.027397 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46404, fd=768 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.027410 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41732, fd=75 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.027421 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48554, fd=1451 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.027492 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3302, fd=2261 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.027536 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3792, fd=2931 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.027571 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58926, fd=2306 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.027641 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60554, fd=2466 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.027692 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51020, fd=891 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.027723 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56414, fd=1462 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.027765 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44270, fd=337 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.027767 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59508, fd=1405 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.027772 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49412, fd=916 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.027784 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59938, fd=1725 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.027851 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2222, fd=2151 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.027908 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1262, fd=3376 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.027931 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9980, fd=2683 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.027953 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55254, fd=3204 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.027960 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55340, fd=1157 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.027998 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56836, fd=1252 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.028014 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6724, fd=3062 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.028044 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6802, fd=2367 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.028082 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62134, fd=1857 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.028092 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52554, fd=3174 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.028134 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64718, fd=2009 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.028194 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10302, fd=3110 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.028219 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53442, fd=3187 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.028341 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55814, fd=2122 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.028408 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52260, fd=1140 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.028488 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56332, fd=1448 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.028796 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57556, fd=2247 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.028811 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53998, fd=1890 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.028865 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53194, fd=970 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.028867 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60326, fd=3273 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.028952 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9228, fd=3613 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.028988 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51534, fd=1076 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.029050 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55796, fd=3210 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.029081 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46836, fd=679 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.029225 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52628, fd=1162 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.029305 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61674, fd=1793 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.029315 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55022, fd=1336 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.029334 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3398, fd=2899 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.029340 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59480, fd=3260 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.029362 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47346, fd=571 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.029412 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41736, fd=59 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.029410 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45838, fd=495 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.029441 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47782, fd=1374 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.029497 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42212, fd=109 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.029635 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48838, fd=729 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.029642 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5324, fd=2902 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.029689 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43402, fd=280 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.029693 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48834, fd=3314 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.029701 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51478, fd=1677 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.029722 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46462, fd=508 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.029730 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6210, fd=2966 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.029779 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53104, fd=1188 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.029826 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56136, fd=3529 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.029844 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63548, fd=2678 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.029869 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49438, fd=921 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.029915 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61190, fd=3286 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.030007 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62130, fd=2522 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.030041 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65006, fd=2043 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.030081 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2502, fd=2093 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.030131 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54480, fd=1116 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.030141 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5692, fd=2449 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.030153 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3814, fd=2829 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.030203 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47826, fd=696 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.030268 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50338, fd=1027 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.030261 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50386, fd=3367 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.030379 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58088, fd=2234 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.030407 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52030, fd=1066 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.030506 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8934, fd=2531 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.030527 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50916, fd=3146 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.030553 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55522, fd=3515 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.030571 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57550, fd=1510 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.030634 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59172, fd=3251 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.030628 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63094, fd=3692 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.030693 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57068, fd=1517 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.030801 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1354, fd=3380 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.030885 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56582, fd=2186 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.030904 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50350, fd=1606 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.030946 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45380, fd=387 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.030981 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62630, fd=1853 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.030987 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42064, fd=83 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.031117 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10118, fd=3627 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.031127 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41914, fd=82 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.031141 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8160, fd=2996 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.031151 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42672, fd=215 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.031224 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53598, fd=1846 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.031235 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59650, fd=3263 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.031276 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60250, fd=2394 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.031351 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4788, fd=2906 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.031354 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1828, fd=1871 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.031352 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42340, fd=131 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.031544 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43934, fd=269 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.031604 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44048, fd=460 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.031612 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44886, fd=446 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.031891 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60808, fd=1765 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.031893 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2364, fd=2156 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.031924 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58662, fd=2289 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.031967 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42366, fd=94 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.032046 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49820, fd=958 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.031983 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48842, fd=1475 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.032131 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65478, fd=2795 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.032148 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6874, fd=2954 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.032162 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2186, fd=2742 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.032191 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5934, fd=3023 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.032201 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43002, fd=249 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.032228 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46868, fd=615 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.032259 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44386, fd=335 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.032309 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1464, fd=3385 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.032354 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62608, fd=1692 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.032365 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49422, fd=906 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.032467 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53218, fd=1202 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.032518 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62024, fd=2552 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.032623 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43078, fd=229 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.032711 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1886, fd=3405 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.032773 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42116, fd=84 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.032893 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53760, fd=1875 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.032896 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8404, fd=3111 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.032917 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2952, fd=2787 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.032941 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54310, fd=1102 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.032956 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56106, fd=1430 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.032962 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51094, fd=885 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.032982 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44524, fd=526 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.032994 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57690, fd=3583 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.033016 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48258, fd=1326 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.033063 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2938, fd=3447 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.033085 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9160, fd=2357 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.033181 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49568, fd=847 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.033188 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63134, fd=3316 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.033188 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41846, fd=92 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.033185 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63258, fd=3696 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.033209 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3022, fd=1949 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.033217 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46598, fd=546 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.033242 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54940, fd=1330 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.033245 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52188, fd=3416 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.033278 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64546, fd=2751 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.033290 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45004, fd=366 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.033304 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51594, fd=1086 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.033318 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64400, fd=2607 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.033351 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50300, fd=1593 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.033385 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3528, fd=2154 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.033452 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46090, fd=1260 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.033502 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4946, fd=3776 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.033549 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47118, fd=542 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.033553 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45506, fd=493 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.033562 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60750, fd=3278 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.033589 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42314, fd=155 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.033631 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60180, fd=2432 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.033641 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59396, fd=3256 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.033652 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5786, fd=2117 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.033667 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54340, fd=1279 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.033710 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42648, fd=182 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.033753 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5514, fd=3792 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.033747 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3992, fd=2305 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.033807 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4458, fd=2959 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.033818 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3970, fd=2838 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.033864 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58846, fd=1375 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.033864 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5406, fd=2994 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.033871 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49654, fd=856 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.033952 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59850, fd=3644 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.033961 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60400, fd=1697 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.034014 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63562, fd=3702 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.034043 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47084, fd=554 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.034045 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1670, fd=3398 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.034081 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50582, fd=1050 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.034097 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54938, fd=1328 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.034152 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46188, fd=524 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.034165 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64728, fd=1987 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.034184 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48650, fd=758 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.034207 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58930, fd=1599 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.034306 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55578, fd=2022 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.034327 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57178, fd=1474 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.034351 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58320, fd=1351 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.034364 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48130, fd=651 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.034376 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65072, fd=3721 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.034400 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62192, fd=1820 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.034432 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50918, fd=3379 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.034426 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4316, fd=2874 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.034444 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51532, fd=3156 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.034457 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7424, fd=2517 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.034462 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47620, fd=604 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.034509 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6496, fd=2940 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.034516 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46600, fd=649 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.034545 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1198, fd=3734 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.034467 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45608, fd=1231 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.034571 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43032, fd=207 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.034584 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4976, fd=3779 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.034613 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44446, fd=279 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.034728 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7888, fd=2282 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.034767 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56604, fd=3542 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.034784 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45132, fd=390 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.034835 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8756, fd=3118 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.034869 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48340, fd=764 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.034968 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65234, fd=2785 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.034967 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57816, fd=1528 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.034990 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7890, fd=3015 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.034990 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53742, fd=1259 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.035097 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65516, fd=2731 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.035169 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42732, fd=108 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.035194 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57262, fd=1526 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.035208 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9600, fd=2407 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.035307 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64176, fd=2665 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.035320 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2476, fd=3439 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.035362 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52662, fd=1135 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.035394 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55520, fd=1373 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.035553 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56700, fd=2100 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.035720 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57298, fd=2163 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.035810 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50076, fd=1564 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.035993 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52066, fd=1158 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.035999 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60980, fd=2493 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.036001 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10246, fd=2457 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.036001 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8782, fd=3847 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.036079 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63774, fd=3705 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.036100 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58500, fd=2279 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.036123 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6426, fd=2934 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.036125 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7246, fd=2504 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.036137 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9084, fd=3066 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.036221 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10470, fd=3869 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.036231 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7690, fd=3572 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.036265 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44208, fd=427 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.036271 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53200, fd=1197 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.036345 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10390, fd=3135 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.036379 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7062, fd=2992 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.036399 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52106, fd=1070 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.036470 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53202, fd=980 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.036778 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53776, fd=3191 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.036812 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62838, fd=1699 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.036853 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8864, fd=2348 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.036890 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61788, fd=2506 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.036971 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10434, fd=2632 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.037019 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10416, fd=3637 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.037040 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9238, fd=2538 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.037046 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50912, fd=857 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.037067 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6212, fd=3805 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.037069 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57894, fd=1587 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.037073 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59662, fd=2369 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.037398 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45554, fd=519 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.037458 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56126, fd=1205 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.037538 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8516, fd=3589 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.037601 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62328, fd=1843 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.037638 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51516, fd=1130 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.037648 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47082, fd=640 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.037730 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61238, fd=3660 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.037820 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54858, fd=3198 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.037841 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55494, fd=1389 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.037859 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10436, fd=2721 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.037915 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48636, fd=3308 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.037923 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2126, fd=2141 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.037956 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49720, fd=880 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.037953 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6738, fd=2943 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.037982 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62304, fd=3306 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.037991 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59146, fd=3252 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.038063 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50244, fd=3358 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.038099 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5176, fd=2396 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.038241 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48124, fd=1391 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.038244 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1202, fd=2744 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.038249 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49200, fd=3323 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.038259 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10266, fd=2709 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.038259 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55438, fd=1362 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.038246 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61710, fd=3668 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.038273 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9712, fd=3861 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.038283 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55976, fd=1393 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.038333 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4770, fd=2374 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.038400 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9230, fd=3122 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.038417 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3074, fd=2800 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.038615 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8090, fd=3025 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.038636 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58456, fd=2304 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.038686 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10456, fd=3868 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.038688 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5740, fd=3518 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.038863 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63304, fd=2662 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.038889 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9794, fd=3862 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.038893 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4094, fd=2948 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.038961 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2580, fd=2199 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.039008 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9520, fd=3128 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.039032 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10140, fd=3629 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.039042 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10446, fd=3138 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.039039 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63760, fd=1771 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.039059 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62810, fd=1862 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.039100 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56676, fd=2111 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.039113 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65226, fd=2066 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.039174 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46556, fd=573 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.039284 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7184, fd=2998 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.039283 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50924, fd=1642 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.039322 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59512, fd=2346 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.039540 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8602, fd=3115 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.039553 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49710, fd=765 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.039637 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51260, fd=879 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.039680 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46186, fd=577 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.039798 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57748, fd=1533 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.039893 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41714, fd=48 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.039935 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53656, fd=1000 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.040181 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51606, fd=1105 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.040289 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49652, fd=733 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.040293 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49332, fd=956 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.040371 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10382, fd=3134 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.040397 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64758, fd=3720 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.040447 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44338, fd=259 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.040456 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56336, fd=1415 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.040457 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43108, fd=233 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.040501 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55646, fd=3511 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.040796 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41582, fd=31 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.041072 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54984, fd=1965 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.041152 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41658, fd=41 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:19:11.041450 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64202, fd=1947 (userver::v3_0::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.809901 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34654, fd=334 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.809923 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34526, fd=317 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.810164 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34730, fd=343 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.810178 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34622, fd=329 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.810331 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34504, fd=313 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.810357 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34482, fd=310 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.810562 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34502, fd=312 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.810686 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34516, fd=315 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.810807 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34416, fd=302 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.811094 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34476, fd=308 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.811452 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34320, fd=291 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.812071 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34404, fd=301 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.812292 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34662, fd=335 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.812363 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34566, fd=321 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.813193 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41634, fd=1250 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.813245 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54148, fd=2523 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.813268 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2772, fd=4039 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.813349 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56818, fd=2899 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.813437 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64650, fd=3901 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.813513 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42234, fd=1073 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.813533 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1890, fd=4096 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.813663 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57378, fd=2734 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.813694 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2956, fd=4051 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.813748 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52696, fd=2542 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.813761 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35736, fd=474 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.813788 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3164, fd=4281 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.813804 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34608, fd=326 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.813840 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2544, fd=4280 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.813853 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35444, fd=425 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.813909 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35386, fd=417 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.813912 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46070, fd=1715 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814010 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58414, fd=3232 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814097 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35716, fd=450 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814123 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51110, fd=1829 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814126 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35880, fd=458 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814133 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35664, fd=472 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814159 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35562, fd=439 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814166 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42728, fd=1319 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814167 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35454, fd=427 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814172 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52272, fd=2457 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814181 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1050, fd=3908 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814185 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35670, fd=446 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814197 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35812, fd=463 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814245 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35858, fd=456 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814245 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35780, fd=455 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814244 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35622, fd=470 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814270 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35542, fd=436 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814278 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35578, fd=440 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814309 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35548, fd=437 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814359 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62342, fd=3413 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814393 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35682, fd=447 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814488 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35650, fd=461 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814503 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48634, fd=2037 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814562 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35890, fd=476 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814565 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35500, fd=433 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814569 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58958, fd=2986 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814588 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35476, fd=429 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814596 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49520, fd=2235 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814637 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54722, fd=2754 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814667 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51688, fd=2274 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814690 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35430, fd=424 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814706 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35658, fd=471 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814737 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60638, fd=3442 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814744 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43280, fd=1229 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814799 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35512, fd=431 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814806 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50114, fd=2289 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814809 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55824, fd=2866 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814827 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62828, fd=3765 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814827 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48138, fd=1798 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814885 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43838, fd=1989 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814887 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35516, fd=435 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814893 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35796, fd=475 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814906 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35328, fd=413 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814916 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40116, fd=1429 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814938 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1460, fd=3944 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.814940 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53262, fd=2561 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.815004 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35828, fd=454 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.815033 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35750, fd=452 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.815098 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44440, fd=1512 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.815106 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35738, fd=465 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.815139 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53678, fd=2287 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.815143 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35674, fd=448 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.815166 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35764, fd=466 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.815199 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38878, fd=981 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.815276 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47086, fd=1657 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.815420 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45056, fd=1440 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.815530 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47658, fd=1735 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.815542 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3098, fd=4063 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.815557 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1724, fd=3954 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.815567 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49102, fd=1902 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.815570 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55240, fd=2463 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.815627 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61908, fd=3504 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.815742 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35844, fd=457 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.815763 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35414, fd=422 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.815868 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35634, fd=444 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.815883 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3200, fd=4355 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.815936 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35488, fd=445 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.815939 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39056, fd=610 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.815941 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35398, fd=419 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.815947 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35868, fd=464 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.816048 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40732, fd=1535 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.816070 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35730, fd=451 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.816093 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35344, fd=414 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.816095 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63678, fd=3618 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.816103 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35396, fd=418 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.816243 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57382, fd=3128 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.816248 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58328, fd=3199 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.816270 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45538, fd=1635 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.816269 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55178, fd=2797 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.816286 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41098, fd=1597 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.816685 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3174, fd=4278 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.816784 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56400, fd=2935 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.816800 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42908, fd=1019 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.816822 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50214, fd=2023 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.816866 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63224, fd=3838 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.816873 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46274, fd=1275 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.816923 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49202, fd=1905 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.816950 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53222, fd=2699 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.816963 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45706, fd=1434 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.816976 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35372, fd=416 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.816979 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3176, fd=4121 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.816990 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39570, fd=958 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.816995 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64210, fd=3783 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.817023 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55774, fd=2548 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.817052 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63692, fd=3597 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.817072 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52222, fd=2581 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.817075 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40200, fd=1066 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.817111 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56298, fd=2927 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.817121 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2740, fd=4351 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.817282 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2184, fd=4193 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.817384 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46620, fd=1783 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.817472 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57900, fd=2903 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.817474 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1372, fd=3938 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.817497 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40610, fd=1152 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.817521 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63172, fd=3556 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.817523 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65026, fd=3730 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.817539 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65012, fd=3977 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.817549 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59516, fd=3296 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.817639 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35888, fd=459 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.817646 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48246, fd=1788 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.817651 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61066, fd=3474 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.817803 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47148, fd=1377 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.817819 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47778, fd=1741 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.817833 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42364, fd=1083 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.817837 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47188, fd=1656 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.817843 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59734, fd=3098 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.817864 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2906, fd=4115 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.817875 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2050, fd=4180 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.817886 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61982, fd=3479 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.817931 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38656, fd=951 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.817980 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37134, fd=694 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818021 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55206, fd=2669 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818025 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35424, fd=423 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818055 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65472, fd=3979 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818069 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45182, fd=1451 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818074 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45694, fd=2062 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818094 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60098, fd=3351 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818107 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43496, fd=1414 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818113 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52640, fd=2340 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818153 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61114, fd=3533 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818180 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63094, fd=3811 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818201 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49648, fd=2259 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818247 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64418, fd=3828 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818260 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54142, fd=2537 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818274 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53598, fd=2272 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818279 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35358, fd=415 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818286 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54116, fd=2692 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818340 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44552, fd=1197 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818346 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55770, fd=2910 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818359 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61534, fd=3271 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818363 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52610, fd=2634 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818368 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58222, fd=3130 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818424 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41274, fd=1035 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818450 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64566, fd=3906 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818493 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35420, fd=421 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818522 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60682, fd=3425 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818525 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57844, fd=3074 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818544 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36044, fd=504 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818591 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57306, fd=2837 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818592 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46134, fd=1610 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818595 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42766, fd=1337 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818623 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44066, fd=1345 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818628 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62352, fd=3380 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818637 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64154, fd=3612 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818780 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48770, fd=2115 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818785 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58720, fd=3280 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818815 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51124, fd=2147 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818842 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3148, fd=4305 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818844 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60314, fd=3404 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818904 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60194, fd=2996 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818909 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40692, fd=757 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818912 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56318, fd=2920 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818940 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51576, fd=2437 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818974 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35850, fd=468 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818982 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35692, fd=462 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.818991 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2262, fd=4043 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.819004 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45122, fd=1269 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.819016 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57868, fd=3195 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.819034 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49564, fd=2228 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.819084 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35598, fd=469 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.819111 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50108, fd=2307 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.819167 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62160, fd=3599 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.819176 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62804, fd=3579 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.819183 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64010, fd=3917 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.819190 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44548, fd=1374 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.819272 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39206, fd=1029 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.819389 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48248, fd=1979 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.819461 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63536, fd=3700 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.819482 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51080, fd=2326 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.819573 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40172, fd=1111 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.819595 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54710, fd=2718 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.819597 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59256, fd=3024 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.819641 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1640, fd=4065 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.819644 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35084, fd=367 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.819691 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41196, fd=1614 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.819729 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35016, fd=370 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.819756 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48776, fd=2121 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.819756 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56822, fd=2854 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.819753 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65356, fd=3862 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.819770 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35122, fd=369 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.819787 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61220, fd=3161 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.819806 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35316, fd=402 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.819844 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49154, fd=1851 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.819870 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60766, fd=3326 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.819937 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42326, fd=1292 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.819945 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43992, fd=2003 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.819950 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51598, fd=2232 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.819953 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38142, fd=556 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.819932 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64904, fd=3943 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.820002 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34832, fd=352 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.820006 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39672, fd=658 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.820016 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56802, fd=3054 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.820027 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35218, fd=411 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.820034 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35262, fd=400 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.820054 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47716, fd=1755 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.820063 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2482, fd=4070 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.820121 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34918, fd=385 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.820141 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35278, fd=403 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.820201 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46700, fd=1791 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.820219 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41832, fd=903 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.820221 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35050, fd=387 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.820278 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62644, fd=3476 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.820280 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34816, fd=350 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.820303 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36426, fd=650 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.820304 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50704, fd=2142 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.820425 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34996, fd=372 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.820489 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43274, fd=1395 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.820592 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46776, fd=1828 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.820600 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39700, fd=897 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.820708 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59216, fd=3212 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.820709 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35190, fd=390 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.820709 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58726, fd=3110 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.820730 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34878, fd=405 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.820773 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34824, fd=351 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.820878 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3104, fd=4057 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.820890 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41860, fd=1700 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.820896 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35038, fd=373 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.820903 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35008, fd=359 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.820905 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35108, fd=382 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.820990 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34904, fd=378 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.821027 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34800, fd=361 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.821044 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34860, fd=355 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.821101 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34940, fd=386 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.821130 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61660, fd=3494 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.821178 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3036, fd=4119 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.821474 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35080, fd=374 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.821538 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35100, fd=375 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.821541 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35162, fd=389 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.821537 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35250, fd=395 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.821580 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35256, fd=399 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.821626 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35164, fd=410 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.821635 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34978, fd=381 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.821738 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52168, fd=2418 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.821862 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34842, fd=354 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.821887 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34986, fd=407 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.821927 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35160, fd=392 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.821985 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35152, fd=409 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.822018 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1296, fd=4077 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.822029 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34962, fd=371 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.822038 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36724, fd=590 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.822086 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34926, fd=356 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.822220 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35292, fd=404 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.822237 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35096, fd=368 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.822272 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37602, fd=540 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.822282 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35114, fd=377 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.822298 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50636, fd=2368 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.822313 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35306, fd=401 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.822343 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34852, fd=364 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.822469 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35242, fd=396 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.822590 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53550, fd=2608 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.822707 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39374, fd=1037 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.822749 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61218, fd=3449 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.822840 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34954, fd=358 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.822861 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35198, fd=398 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.822899 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48104, fd=1781 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.822918 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57820, fd=3015 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.822924 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40162, fd=1135 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.822999 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56842, fd=2701 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823052 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42186, fd=949 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823060 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34866, fd=357 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823097 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35228, fd=412 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823122 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54700, fd=2618 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823130 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38312, fd=829 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823137 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61676, fd=3436 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823139 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52506, fd=1954 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823190 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38686, fd=602 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823214 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59836, fd=2984 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823215 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35138, fd=388 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823289 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34836, fd=362 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823301 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35192, fd=397 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823301 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39052, fd=596 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823305 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53200, fd=2472 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823330 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35056, fd=365 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823419 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35148, fd=408 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823422 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35140, fd=391 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823469 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59144, fd=3305 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823505 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35010, fd=384 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823537 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35176, fd=393 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823550 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35066, fd=366 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823562 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36224, fd=498 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823609 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55858, fd=2756 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823631 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40164, fd=1114 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823642 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39782, fd=890 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823689 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58042, fd=3027 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823691 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55338, fd=2469 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823698 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34872, fd=376 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823703 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44392, fd=1425 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823750 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34894, fd=406 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823760 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2884, fd=4061 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823772 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34930, fd=380 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823782 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51560, fd=2262 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823789 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37250, fd=734 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823806 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59990, fd=3402 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823826 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48620, fd=2111 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823849 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45678, fd=1238 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823884 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46814, fd=1607 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823914 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39192, fd=866 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823916 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44734, fd=1399 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823926 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44814, fd=1185 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.823978 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35156, fd=379 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824007 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34838, fd=353 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824016 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46790, fd=1678 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824044 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40724, fd=780 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824046 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50212, fd=2304 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824100 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60928, fd=3506 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824112 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52080, fd=2494 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824155 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56972, fd=3086 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824195 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42592, fd=1214 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824205 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1444, fd=4176 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824235 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51138, fd=2194 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824236 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45982, fd=1680 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824261 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38030, fd=768 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824264 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40576, fd=1159 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824286 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44002, fd=1326 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824313 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35126, fd=383 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824320 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57338, fd=2726 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824328 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36368, fd=506 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824336 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47700, fd=1725 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824343 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58520, fd=3240 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824349 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58246, fd=3242 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824353 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54882, fd=2770 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824364 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42944, fd=1200 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824386 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54358, fd=2771 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824396 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56036, fd=2897 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824415 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53280, fd=2483 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824417 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35024, fd=360 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824429 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58964, fd=3225 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824495 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62590, fd=3726 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824514 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62788, fd=3759 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824526 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47644, fd=2094 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824609 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45282, fd=1468 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824641 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60398, fd=3434 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824647 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61450, fd=3184 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824673 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43472, fd=1252 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824683 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1802, fd=4089 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824691 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53318, fd=2600 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824705 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64534, fd=3655 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824705 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34848, fd=363 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824716 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36572, fd=523 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824724 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54076, fd=2541 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824762 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54840, fd=2614 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824787 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40938, fd=1109 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824795 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47172, fd=1370 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824803 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50742, fd=2209 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824862 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55328, fd=2880 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824896 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39994, fd=940 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824945 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50682, fd=2198 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.824983 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35214, fd=394 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.825000 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62330, fd=3408 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.825017 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59512, fd=3288 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.825037 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52298, fd=1923 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.825145 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53770, fd=2661 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.825152 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58680, fd=3275 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.825164 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37378, fd=750 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.825167 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52946, fd=2529 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.825187 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55140, fd=2653 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.825211 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47906, fd=1942 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.825233 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60454, fd=3460 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.825250 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64510, fd=3852 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.825251 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36970, fd=684 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.825266 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41906, fd=918 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.825276 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59572, fd=3145 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.825298 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57598, fd=3115 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.825333 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45192, fd=1387 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.825334 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62362, fd=3388 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.825348 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51648, fd=2256 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.825351 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1864, fd=4076 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.825405 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56524, fd=2940 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.825431 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43768, fd=1463 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.825443 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62262, fd=3342 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.825460 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55682, fd=2857 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.825482 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57174, fd=3066 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.825495 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58126, fd=3100 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.825562 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42484, fd=1316 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.825624 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63188, fd=3703 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.825642 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38470, fd=945 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.825666 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41834, fd=1253 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.825742 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41082, fd=804 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.825751 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43526, fd=1442 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.825800 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48350, fd=1794 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.826068 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53840, fd=2440 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.826085 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64990, fd=3854 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.826098 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50286, fd=2312 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.826099 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36558, fd=535 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.826114 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53202, fd=2388 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.826120 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56420, fd=2815 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.826126 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38964, fd=859 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.826127 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41586, fd=1048 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.826201 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53568, fd=2716 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.826196 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39666, fd=664 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.826261 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45802, fd=2064 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.826289 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49878, fd=1665 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.826306 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49646, fd=1658 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.826363 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56718, fd=2877 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.826394 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49374, fd=2227 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.826465 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60018, fd=3276 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.826467 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49124, fd=2196 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.826503 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39500, fd=902 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.826502 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37764, fd=729 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.826514 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34786, fd=349 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.826544 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64954, fd=3873 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.826552 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2180, fd=4197 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.826554 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52226, fd=2349 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.826625 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48122, fd=1472 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.826639 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45944, fd=1695 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.826660 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36412, fd=599 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.826680 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56270, fd=2860 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.826707 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61924, fd=3518 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.826778 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2138, fd=4189 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.826825 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63620, fd=3714 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.826882 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46472, fd=1291 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.826900 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63186, fd=3831 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.826948 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44360, fd=1348 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.826957 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37838, fd=746 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827002 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39234, fd=1001 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827005 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51190, fd=2422 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827044 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41354, fd=1038 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827048 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1376, fd=3832 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827059 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64056, fd=3580 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827149 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64480, fd=3727 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827163 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47264, fd=1707 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827173 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59568, fd=3274 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827237 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45502, fd=1226 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827250 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36304, fd=539 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827284 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63166, fd=3542 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827287 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49002, fd=1589 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827293 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48318, fd=1499 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827324 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41300, fd=1640 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827367 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64046, fd=3665 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827418 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59992, fd=3226 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827437 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41954, fd=1061 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827448 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54834, fd=2630 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827454 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55368, fd=2698 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827457 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37186, fd=647 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827494 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65514, fd=3985 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827503 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61890, fd=3312 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827512 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48644, fd=1865 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827532 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50208, fd=2305 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827534 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39784, fd=993 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827565 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46380, fd=1536 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827627 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51116, fd=2226 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827665 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2724, fd=4008 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827718 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47374, fd=2089 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827723 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51694, fd=2282 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827742 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42990, fd=1358 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827748 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59050, fd=3162 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827753 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48792, fd=1854 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827754 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50798, fd=2236 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827761 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45798, fd=1254 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827789 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36920, fd=720 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827814 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57674, fd=3134 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827820 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52752, fd=2549 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827842 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61482, fd=3409 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827891 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2728, fd=4047 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827891 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59532, fd=3345 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827929 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58052, fd=3035 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827954 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40824, fd=1175 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827958 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56956, fd=2886 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827983 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38224, fd=773 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827992 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2546, fd=4026 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.827999 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44088, fd=1178 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828020 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37626, fd=542 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828036 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63608, fd=3493 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828037 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42652, fd=1007 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828057 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59152, fd=3323 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828070 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37282, fd=742 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828127 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46810, fd=1599 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828132 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49730, fd=1651 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828142 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51804, fd=2292 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828185 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46942, fd=1339 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828188 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48788, fd=2117 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828217 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44630, fd=1456 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828224 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49346, fd=2213 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828265 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1734, fd=4064 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828271 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40286, fd=1459 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828298 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62816, fd=3753 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828410 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43520, fd=1394 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828414 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53194, fd=2144 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828420 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46312, fd=1749 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828420 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56006, fd=2852 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828477 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36592, fd=587 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828495 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53658, fd=2426 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828529 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49866, fd=1970 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828560 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47460, fd=1391 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828562 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61848, fd=3444 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828575 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44920, fd=1564 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828623 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50690, fd=2002 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828626 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50296, fd=2313 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828632 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61004, fd=3114 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828678 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54522, fd=2585 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828787 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43106, fd=1266 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828828 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38654, fd=792 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828829 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63682, fd=3894 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828832 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52422, fd=1946 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828861 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38720, fd=827 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828865 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40980, fd=1584 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828929 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65518, fd=3898 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828942 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61986, fd=3510 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828943 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61476, fd=3223 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828949 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54150, fd=2552 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.828963 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64224, fd=3789 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.829012 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38374, fd=591 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.829048 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49192, fd=2210 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.829076 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63568, fd=3722 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.829085 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62752, fd=3751 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.829138 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50520, fd=2352 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.829211 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52238, fd=2322 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.829243 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64960, fd=3984 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.829253 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42558, fd=1771 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.829261 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54884, fd=2822 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.829306 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60504, fd=3051 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.829310 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40608, fd=731 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.829330 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47186, fd=1720 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.829338 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41368, fd=1212 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.829401 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52704, fd=2409 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.829407 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44176, fd=1127 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.829454 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43008, fd=1364 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.829483 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65454, fd=3767 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.829486 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36138, fd=503 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.829495 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47834, fd=1748 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.829514 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37604, fd=708 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.829557 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60848, fd=3191 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.829586 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60774, fd=3512 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.829588 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43168, fd=1097 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.829595 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63258, fd=3711 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.829699 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62918, fd=3515 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.829916 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2500, fd=4016 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.829940 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50038, fd=2020 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.829943 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2474, fd=4230 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.829943 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59988, fd=3210 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.829946 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45302, fd=1473 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.829949 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58596, fd=3269 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.830012 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37040, fd=726 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.830031 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60652, fd=3330 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.830044 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62312, fd=3607 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.830062 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36054, fd=502 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.830068 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59732, fd=3090 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.830096 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42120, fd=919 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.830108 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51978, fd=2489 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.830121 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53340, fd=2185 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.830178 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59308, fd=3140 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.830194 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39418, fd=887 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.830186 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57546, fd=3125 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.830431 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61076, fd=3466 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.830439 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52668, fd=2394 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.830453 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56820, fd=2686 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.830521 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46148, fd=1701 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.830525 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62366, fd=3590 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.830638 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38890, fd=592 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.830639 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62772, fd=3501 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.830680 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54660, fd=2711 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.830696 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55938, fd=2872 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.830769 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65222, fd=3744 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.830769 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64058, fd=3775 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.830773 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48682, fd=2044 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.830790 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35952, fd=485 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.830875 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49122, fd=1900 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.830912 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61382, fd=3502 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.830918 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60136, fd=3362 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831006 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36352, fd=507 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831033 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43610, fd=1955 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831040 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2916, fd=4294 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831053 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47838, fd=1775 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831080 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64664, fd=3809 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831111 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46210, fd=1516 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831118 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53086, fd=2575 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831128 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46278, fd=1554 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831127 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56480, fd=2900 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831158 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54308, fd=2737 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831183 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58172, fd=3052 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831185 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39874, fd=676 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831190 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49484, fd=1893 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831220 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58722, fd=3287 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831225 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38240, fd=560 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831256 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40902, fd=1560 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831262 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40380, fd=1485 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831279 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37874, fd=548 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831316 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48244, fd=1972 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831321 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49088, fd=2175 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831334 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52602, fd=2401 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831353 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37402, fd=811 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831355 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1432, fd=3990 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831411 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36262, fd=712 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831418 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42158, fd=1722 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831435 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1062, fd=3950 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831494 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51154, fd=2438 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831525 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49534, fd=2237 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831537 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57736, fd=2979 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831539 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58220, fd=3122 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831553 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1720, fd=4222 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831556 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61474, fd=3394 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831578 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48686, fd=1805 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831644 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44706, fd=1544 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831671 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2264, fd=3993 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831698 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58526, fd=2956 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831703 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57832, fd=3068 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831708 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59514, fd=3154 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831719 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36560, fd=525 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831763 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41520, fd=861 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831846 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64512, fd=3649 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831860 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40400, fd=975 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831922 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51016, fd=2286 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831926 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42594, fd=1782 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831936 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63158, fd=3535 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.831976 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46742, fd=1820 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.832003 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45764, fd=1549 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.832026 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52918, fd=2103 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.832060 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39886, fd=1413 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.832100 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64956, fd=3843 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.832147 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64044, fd=3596 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.832150 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45196, fd=1498 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.832198 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52194, fd=2558 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.832203 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43572, fd=1297 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.832229 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58616, fd=2827 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.832241 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48124, fd=1974 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.832273 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50028, fd=2028 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.832342 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42580, fd=982 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.832438 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53538, fd=2404 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.832455 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56222, fd=2792 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.832470 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63550, fd=3488 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.832586 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1298, fd=4028 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.832610 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47656, fd=1750 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.832612 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65432, fd=3891 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.832635 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44166, fd=1322 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.832643 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46710, fd=1661 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.832655 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42584, fd=1790 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.832664 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47168, fd=2084 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.832693 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44292, fd=1328 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.832767 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48096, fd=1452 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.832786 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2090, fd=4254 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.832877 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48886, fd=2128 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.832957 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38860, fd=834 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.832964 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44174, fd=1183 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.832967 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41418, fd=867 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.832981 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44732, fd=1381 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.833020 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60642, fd=3450 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.833070 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53154, fd=2567 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.833078 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54624, fd=2785 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.833100 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47640, fd=1719 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.833329 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38354, fd=793 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.833427 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37248, fd=639 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.833461 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45130, fd=1586 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.833504 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45574, fd=1478 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.833572 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52448, fd=2337 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.833682 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43876, fd=1144 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.833773 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55094, fd=2431 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.833795 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56578, fd=3016 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.833805 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56230, fd=2775 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.833845 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57074, fd=2948 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.833864 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36578, fd=585 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.833875 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36192, fd=674 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.833886 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52072, fd=2308 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.833914 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37026, fd=617 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.834003 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46788, fd=1811 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.834028 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51574, fd=1884 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.834042 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42004, fd=1272 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.834059 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45948, fd=1531 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.834104 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45248, fd=1460 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.834122 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57324, fd=2945 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.834126 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58070, fd=2909 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.834148 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51432, fd=2397 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.834180 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50532, fd=2346 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.834217 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54262, fd=2530 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.834231 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40844, fd=1113 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.834265 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40364, fd=1154 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.834300 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55634, fd=2713 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.834336 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37446, fd=818 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.834338 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43486, fd=1917 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.834475 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36386, fd=653 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.834488 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44694, fd=1202 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.834501 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53798, fd=2674 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.834507 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39882, fd=1084 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.834553 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50056, fd=2013 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.834582 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50868, fd=2174 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.834583 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38922, fd=856 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.834594 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37864, fd=730 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.834673 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56376, fd=2951 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.834703 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56920, fd=2905 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.834722 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42026, fd=911 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.834726 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39320, fd=1343 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.834734 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37598, fd=745 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.834768 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49686, fd=1633 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.834860 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52804, fd=2480 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.834894 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53486, fd=2471 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.834944 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54054, fd=2501 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.834991 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60400, fd=3151 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.835088 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2400, fd=4107 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.835111 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59912, fd=3397 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.835418 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55422, fd=2851 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.835420 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54960, fd=2812 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.835441 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60510, fd=3468 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.835515 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39404, fd=654 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.835817 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56628, fd=2665 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.835870 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39432, fd=894 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.835973 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43070, fd=1864 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.836018 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48534, fd=2106 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.836050 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43068, fd=1256 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.836160 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63084, fd=3431 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.836182 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45758, fd=1556 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.836213 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45818, fd=1441 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.836230 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55458, fd=2813 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.836242 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64016, fd=3699 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.836253 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51288, fd=2369 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.836269 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62650, fd=3453 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.836295 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59388, fd=3213 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.836333 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59882, fd=3325 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.836355 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62328, fd=3372 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.836434 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53802, fd=2520 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.836437 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51640, fd=2242 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.836469 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37906, fd=828 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.836478 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47146, fd=1699 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.836499 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60026, fd=3374 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.836523 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50428, fd=2118 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.836546 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60294, fd=3285 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.836586 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58440, fd=2938 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.836641 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38636, fd=937 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.836659 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37778, fd=762 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.836665 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57754, fd=3038 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.836674 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61188, fd=3571 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.836685 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60992, fd=3384 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.836689 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42836, fd=1193 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.836763 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47458, fd=1683 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.836769 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43170, fd=1093 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.836828 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63520, fd=3688 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.836848 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62292, fd=3553 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.836854 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57580, fd=2966 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.836875 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62248, fd=3545 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.836913 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41390, fd=1219 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.836933 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53990, fd=2700 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.836944 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57638, fd=3007 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.836968 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43990, fd=1439 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837001 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64476, fd=3786 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837031 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42208, fd=1739 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837035 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51810, fd=2306 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837045 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57068, fd=2814 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837046 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46580, fd=1566 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837066 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60044, fd=3219 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837065 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41522, fd=1046 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837077 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43450, fd=1383 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837079 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39638, fd=644 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837083 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46334, fd=1758 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837086 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43704, fd=1455 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837112 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51356, fd=2219 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837146 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64882, fd=3915 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837168 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37374, fd=532 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837232 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60960, fd=3093 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837246 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39884, fd=914 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837267 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61662, fd=3623 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837276 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59154, fd=2993 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837285 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56148, fd=2628 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837297 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58724, fd=3096 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837316 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38880, fd=988 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837354 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49266, fd=2224 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837354 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54376, fd=2577 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837366 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50940, fd=2395 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837387 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2434, fd=4062 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837427 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61760, fd=3303 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837428 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56170, fd=2767 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837436 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58666, fd=3310 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837459 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65370, fd=3880 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837465 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55832, fd=2750 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837475 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56624, fd=2961 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837492 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51428, fd=2216 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837532 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52968, fd=2423 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837539 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40366, fd=747 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837586 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55642, fd=2724 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837619 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55568, fd=2835 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837662 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57366, fd=3084 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837687 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59552, fd=3044 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837708 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44802, fd=1404 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837711 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2880, fd=4292 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837723 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57082, fd=2924 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837744 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52532, fd=1995 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837749 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2052, fd=3983 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837783 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42190, fd=926 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837791 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53416, fd=2396 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837821 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41760, fd=1243 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837835 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64916, fd=3778 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837855 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49912, fd=1918 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837857 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48890, fd=1830 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837859 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35966, fd=495 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837871 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58056, fd=3216 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837872 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46086, fd=1708 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837934 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55054, fd=2643 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837942 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44252, fd=1466 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837995 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1288, fd=4018 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.837999 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45608, fd=1646 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.838025 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62652, fd=3631 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.838028 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36754, fd=690 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.838038 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37624, fd=711 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.838074 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38332, fd=879 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.838099 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60276, fd=3292 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.838127 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48016, fd=1936 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.838199 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39152, fd=912 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.838301 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41222, fd=831 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.838350 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46338, fd=1281 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.838371 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36714, fd=607 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.838396 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42698, fd=1340 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.838404 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47036, fd=1647 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.838501 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60452, fd=3040 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.838523 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40982, fd=1018 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.838525 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60746, fd=3347 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.838565 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54406, fd=2568 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.838610 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1660, fd=4217 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.838655 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1626, fd=4048 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.838718 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45306, fd=1606 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.838728 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48102, fd=1490 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.838799 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49234, fd=1914 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.838811 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46880, fd=2079 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.838822 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36828, fd=520 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.838823 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53908, fd=2677 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.838831 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38330, fd=915 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.838906 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48808, fd=2148 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.838958 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47142, fd=2083 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.838967 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43672, fd=1415 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.838975 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50952, fd=2027 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.838979 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50854, fd=2011 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.838985 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48474, fd=1532 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839013 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2044, fd=4021 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839022 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50382, fd=2329 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839035 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38154, fd=552 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839075 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65388, fd=3872 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839076 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1194, fd=3815 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839091 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36290, fd=584 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839101 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2712, fd=4002 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839106 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58558, fd=3132 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839120 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50492, fd=2315 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839126 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40720, fd=992 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839167 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52456, fd=2522 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839191 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43162, fd=1092 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839201 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42696, fd=1335 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839204 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56582, fd=2974 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839207 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50026, fd=1688 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839225 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64000, fd=3869 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839238 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62848, fd=3415 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839273 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39020, fd=870 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839367 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1464, fd=3948 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839380 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52028, fd=2539 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839414 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60206, fd=3278 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839443 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53506, fd=2615 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839623 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49558, fd=2201 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839655 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44522, fd=2039 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839701 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40278, fd=1148 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839760 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57926, fd=3080 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839761 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64152, fd=3606 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839769 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53042, fd=2559 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839812 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45740, fd=1506 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839828 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42366, fd=1280 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839835 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64436, fd=3952 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839841 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46152, fd=1724 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839872 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39254, fd=1008 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839883 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37166, fd=743 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839888 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61670, fd=3291 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839890 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57468, fd=2955 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839891 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53876, fd=2660 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839903 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51036, fd=2414 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839922 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41532, fd=885 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839939 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49918, fd=1980 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839952 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48864, fd=2162 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839970 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44228, fd=1334 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.839990 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47894, fd=1950 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840018 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51152, fd=2179 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840018 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52714, fd=2024 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840033 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38756, fd=816 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840054 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43186, fd=1896 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840051 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58174, fd=3067 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840064 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59052, fd=3169 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840094 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39502, fd=1375 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840127 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45620, fd=1232 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840128 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55520, fd=2828 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840152 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60278, fd=3393 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840154 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54958, fd=2637 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840162 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36014, fd=491 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840188 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41284, fd=1209 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840246 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51920, fd=2300 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840286 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45200, fd=1588 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840291 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40480, fd=990 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840326 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36320, fd=501 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840329 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55012, fd=2613 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840337 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54070, fd=2675 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840367 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56872, fd=3072 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840368 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48374, fd=2102 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840407 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37140, fd=642 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840409 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56550, fd=2855 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840431 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63562, fd=3850 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840439 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59536, fd=3377 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840448 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36322, fd=581 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840457 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47594, fd=1906 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840473 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38512, fd=575 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840505 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43684, fd=1303 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840533 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64978, fd=3823 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840537 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59312, fd=3364 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840542 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42206, fd=1069 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840601 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47580, fd=1727 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840684 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50698, fd=2376 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840701 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2402, fd=4015 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840707 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56038, fd=2602 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840710 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58008, fd=3010 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840744 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63534, fd=3694 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840780 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39992, fd=1117 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840782 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52420, fd=2343 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840797 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37484, fd=797 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840804 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58954, fd=3204 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840819 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54966, fd=2619 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840831 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40984, fd=1188 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840875 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64004, fd=3923 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840913 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59864, fd=3318 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840922 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49370, fd=1939 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840950 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63680, fd=3887 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840972 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39786, fd=1003 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.840990 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63240, fd=3548 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.841005 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56434, fd=2923 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.841005 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48028, fd=1944 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.841036 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53190, fd=2594 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.841098 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37044, fd=547 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.841102 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45994, fd=1601 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.841149 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45134, fd=1245 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.841169 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58844, fd=3178 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.841174 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62398, fd=3576 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.841179 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63066, fd=3819 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.841198 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64552, fd=3884 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.841308 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61998, fd=3497 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.841311 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61372, fd=3514 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.841399 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61300, fd=3217 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.841429 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62184, fd=3689 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.841477 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1916, fd=4082 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.841535 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1030, fd=4036 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.841543 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58464, fd=2799 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.841578 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53604, fd=2485 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.841614 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61852, fd=3647 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.841615 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54370, fd=2696 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.841617 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53288, fd=2623 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.841653 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55546, fd=2712 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.841689 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58612, fd=3083 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.841741 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50246, fd=2041 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.841741 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62638, fd=3620 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.841796 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51638, fd=2443 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.841847 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44752, fd=2049 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.841943 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41408, fd=860 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.841944 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60860, fd=3483 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.841962 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49214, fd=2188 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.841964 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46726, fd=1804 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.841972 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48698, fd=1855 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.841991 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52228, fd=2508 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.842014 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57766, fd=2985 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.842018 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38340, fd=858 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.842019 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47286, fd=1714 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.842096 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38328, fd=562 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.842104 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45126, fd=2055 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.842148 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37622, fd=538 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.842187 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58356, fd=3088 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.842189 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46294, fd=1524 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.842198 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2776, fd=4255 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.842250 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43040, fd=1262 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.842256 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48454, fd=1525 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.842256 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63930, fd=3757 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.842285 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2318, fd=4263 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.842338 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2548, fd=3974 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.842350 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38110, fd=892 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.842353 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44182, fd=1496 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.842436 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3020, fd=4279 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.842457 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44704, fd=1537 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.842471 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1064, fd=4032 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.842495 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37810, fd=725 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.842534 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61158, fd=3391 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.842550 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63488, fd=3685 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.842582 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53312, fd=2490 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.842590 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42726, fd=1332 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.842598 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1866, fd=4249 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.842625 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46778, fd=1310 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.842633 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63092, fd=3676 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.842687 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65238, fd=3904 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.842697 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51360, fd=2180 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.842727 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41988, fd=928 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.842727 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51884, fd=2360 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.842740 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45778, fd=1637 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.842747 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49264, fd=1920 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.842785 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59628, fd=2942 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.842854 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44680, fd=1541 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.842873 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57202, fd=2932 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.842886 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36566, fd=679 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.843000 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47714, fd=1922 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.843012 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61564, fd=3621 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.843014 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64818, fd=3920 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.843017 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49804, fd=1967 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.843033 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59146, fd=3003 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.843064 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55044, fd=2650 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.843145 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45194, fd=1595 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.843170 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51400, fd=2461 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.843243 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62260, fd=3570 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.843367 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60698, fd=3064 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.843404 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64348, fd=3747 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.843421 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47564, fd=1704 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.843455 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50472, fd=2336 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.843462 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56720, fd=3006 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.843480 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52878, fd=2510 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.843625 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53654, fd=2648 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.843626 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62606, fd=3743 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.843639 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44098, fd=1448 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.843665 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63104, fd=3788 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.843726 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54708, fd=2591 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.843775 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64232, fd=3680 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.843853 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44090, fd=1417 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.843870 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40736, fd=1094 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.843876 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40892, fd=1005 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.843882 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54380, fd=2562 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.843892 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45308, fd=1502 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.843912 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48768, fd=1810 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.844002 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55660, fd=2531 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.844033 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43578, fd=1293 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.844047 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50812, fd=2019 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.844091 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47082, fd=1692 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.844208 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63302, fd=3455 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.844222 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46332, fd=1753 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.844266 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40936, fd=1568 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.844364 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59710, fd=3357 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.844417 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2792, fd=4262 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.844460 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48740, fd=2132 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.844465 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56282, fd=2928 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.844465 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43054, fd=1342 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.844481 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59282, fd=3331 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.844568 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64662, fd=3697 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.844581 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38244, fd=917 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.844632 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64632, fd=3750 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.844741 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56296, fd=2868 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.844820 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46852, fd=1807 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.844830 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55768, fd=2902 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.844886 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49836, fd=1973 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.844886 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57752, fd=2987 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.844897 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50294, fd=2047 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.844930 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62422, fd=3588 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.844957 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51692, fd=2246 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.845019 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58198, fd=3104 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.845127 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54480, fd=2774 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.845149 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39260, fd=1013 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.845231 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37376, fd=557 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.845344 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47832, fd=1736 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.845408 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59840, fd=2978 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.845429 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63758, fd=3742 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.845464 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58182, fd=2918 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.845468 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37808, fd=842 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.845549 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52358, fd=2526 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.845553 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62028, fd=3565 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.845567 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44628, fd=1397 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.845572 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39804, fd=906 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.845631 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39334, fd=1045 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.845637 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61304, fd=3387 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.845641 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2530, fd=4349 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.845646 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2266, fd=4210 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.845669 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1054, fd=3989 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.845727 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1492, fd=4198 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.845730 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51216, fd=2193 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.845779 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39862, fd=1405 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.845793 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61788, fd=3549 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.845812 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36128, fd=494 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.845822 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60122, fd=3424 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.845823 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56708, fd=2864 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.845886 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52852, fd=2564 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.845888 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42562, fd=1329 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.845923 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47390, fd=1860 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.845957 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47974, fd=1767 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.845977 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37724, fd=570 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.845985 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52558, fd=1981 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.846018 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49190, fd=1921 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.846067 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3120, fd=4174 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.846072 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65130, fd=3885 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.846078 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3064, fd=4354 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.846084 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53522, fd=2599 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.846092 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45366, fd=1628 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.846107 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61592, fd=3521 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.846145 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54110, fd=2715 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.846202 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37212, fd=553 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.846208 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59392, fd=3256 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.846208 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50206, fd=2298 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.846250 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51048, fd=2293 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.846265 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39328, fd=929 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.846419 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58794, fd=3131 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.846469 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55174, fd=2456 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.846484 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1478, fd=4191 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.846522 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61168, fd=3503 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.846556 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60696, fd=3457 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.846610 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52200, fd=2449 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.846640 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41484, fd=874 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.846700 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40396, fd=1132 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.846710 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47474, fd=1689 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.846736 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46462, fd=1644 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.846763 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2970, fd=4072 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.846794 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42198, fd=1288 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.846833 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37278, fd=662 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.846869 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49320, fd=2184 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.846918 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36778, fd=543 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.846969 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48452, fd=2104 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.847001 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54144, fd=2509 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.847004 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60826, fd=3490 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.847014 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56758, fd=2976 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.847017 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2512, fd=4023 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.847045 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43188, fd=1909 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.847065 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60038, fd=3368 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.847079 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65050, fd=3879 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.847099 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43588, fd=1129 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.847129 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62814, fd=3650 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.847192 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37776, fd=847 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.847218 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57326, fd=3097 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.847274 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56268, fd=2649 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.847273 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38786, fd=851 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.847299 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59962, fd=3346 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.847301 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49956, fd=2270 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.847538 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42688, fd=1023 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.847547 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40088, fd=1420 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.847602 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62336, fd=3704 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.847696 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38278, fd=865 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.847747 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54616, fd=2790 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.847781 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48862, fd=1862 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.847811 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1456, fd=4181 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.847858 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59246, fd=3189 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.847864 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50818, fd=2363 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.847866 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61348, fd=3585 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.847876 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51528, fd=1859 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.847912 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45426, fd=2057 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.847954 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36708, fd=755 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.848060 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61766, fd=3454 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.848096 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39854, fd=680 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.848099 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38456, fd=806 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.848156 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40332, fd=1128 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.848213 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50332, fd=2105 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.848237 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52224, fd=2442 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.848259 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57210, fd=2930 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.848285 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54162, fd=2517 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.848322 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39584, fd=1009 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.848334 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1816, fd=3870 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.848339 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63168, fd=3438 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.848609 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63694, fd=3728 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.848613 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38822, fd=616 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.848612 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49250, fd=2158 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.848660 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55668, fd=2505 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.848667 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57872, fd=3202 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.848673 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60574, fd=3435 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.848678 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55254, fd=2688 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.848680 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61536, fd=3629 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.848692 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46878, fd=1608 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.848720 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44870, fd=1216 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.848768 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48426, fd=2025 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.848837 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42200, fd=962 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.848847 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61008, fd=3198 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.848939 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43778, fd=1423 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.848942 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42710, fd=1312 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.848974 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46376, fd=1630 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.849031 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55874, fd=2732 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.849036 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48846, fd=1818 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.849057 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45890, fd=1553 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.849094 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43772, fd=1151 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.849098 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62018, fd=3332 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.849170 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49842, fd=1984 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.849175 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1564, fd=4059 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.849213 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38758, fd=844 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.849223 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60088, fd=3266 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.849224 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47862, fd=1436 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.849292 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1100, fd=4007 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.849304 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63242, fd=3663 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.849391 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2004, fd=4341 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.849401 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57772, fd=2749 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.849503 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53256, fd=2150 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.849756 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53024, fd=2381 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.849783 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58230, fd=3182 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.849945 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60382, fd=3317 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.849999 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64634, fd=3675 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.850013 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41524, fd=1156 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.850061 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65236, fd=3910 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.850082 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56346, fd=2875 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.850104 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44338, fd=1437 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.850103 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52082, fd=2502 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.850211 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63582, fd=3871 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.850346 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62364, fd=3719 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.850406 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43228, fd=1105 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.850448 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50560, fd=2131 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.850553 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51076, fd=2189 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.850590 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2656, fd=4111 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.850671 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37290, fd=534 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.850718 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2390, fd=4058 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.850885 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45930, fd=1538 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.850971 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41584, fd=1679 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.851064 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63392, fd=3710 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.851097 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63844, fd=3740 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.851128 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56576, fd=2954 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.851176 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64668, fd=3764 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.851306 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57998, fd=3001 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.851415 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58418, fd=2946 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.851436 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61290, fd=3592 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.851649 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53968, fd=2474 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.851741 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39226, fd=1034 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.851815 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39726, fd=1398 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.851820 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42622, fd=991 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.851874 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43948, fd=1338 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.851909 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59696, fd=3181 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.851912 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59742, fd=3260 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.852003 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54712, fd=2725 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.852006 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54386, fd=2768 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.852036 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51510, fd=2405 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.852067 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37836, fd=546 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.852076 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54112, fd=2493 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.852081 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58594, fd=3155 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.852083 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50128, fd=2290 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.852084 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37138, fd=790 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.852087 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40198, fd=705 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.852091 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44086, fd=1317 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.852094 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46762, fd=2076 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.852201 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59156, fd=3319 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.852317 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56724, fd=2988 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.852324 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1940, fd=4098 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.852389 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37600, fd=561 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.852399 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41184, fd=823 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.852403 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48766, fd=1872 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.852413 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60208, fd=3301 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.852440 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56040, fd=2610 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.852453 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53638, fd=2722 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.852458 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42106, fd=1187 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.852577 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48292, fd=1514 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.852589 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1536, fd=3849 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.852595 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40502, fd=724 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.852598 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57634, fd=2998 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.852657 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54974, fd=2419 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.852674 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49216, fd=1916 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.852692 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63424, fd=3569 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.852742 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64834, fd=3836 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.852749 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38070, fd=753 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.852864 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57038, fd=3031 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.852883 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45704, fd=1563 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.852896 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57296, fd=2929 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.853010 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61548, fd=3517 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.853026 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52026, fd=2532 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.853048 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53230, fd=2453 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.853137 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48806, fd=2122 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.853153 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43350, fd=1388 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.853207 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41004, fd=1576 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.853224 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46876, fd=1815 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.853251 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63790, fd=3749 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.853286 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64720, fd=3822 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.853323 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35994, fd=496 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.853505 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49326, fd=1874 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.853522 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39858, fd=1080 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.853523 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60138, fd=3400 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.853532 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38920, fd=893 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.853539 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2076, fd=3975 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.853587 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50846, fd=2370 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.853735 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56752, fd=2893 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.853762 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43052, fd=1369 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.853765 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46100, fd=1671 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.853812 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55068, fd=2663 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.853953 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1072, fd=4034 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.853979 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42204, fd=1207 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.854018 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56232, fd=2796 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.854569 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55784, fd=2810 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.854853 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53608, fd=2432 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.855107 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56626, fd=2779 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.855124 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59446, fd=3235 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.855136 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37058, fd=630 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.855251 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52508, fd=2392 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:24.855463 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63828, fd=3733 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.108648 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65370, fd=315 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.109293 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65384, fd=317 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.109294 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1160, fd=348 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.109308 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1092, fd=340 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.109322 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65460, fd=324 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.109574 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1098, fd=342 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.109876 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65430, fd=321 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.110050 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1068, fd=339 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.110275 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65458, fd=322 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.110296 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65182, fd=293 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.110316 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65344, fd=312 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.110402 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65314, fd=308 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.110530 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65250, fd=298 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.110528 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65252, fd=300 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.110576 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1484, fd=385 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.110716 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1596, fd=409 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.110803 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1662, fd=405 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.110804 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1240, fd=358 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.110843 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65326, fd=309 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.110851 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1504, fd=388 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.110854 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65340, fd=311 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.110877 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65260, fd=301 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.110890 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65472, fd=325 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.110889 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1708, fd=410 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.110933 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65168, fd=290 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.111139 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65328, fd=310 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.111288 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1404, fd=379 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.111295 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1690, fd=406 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.111493 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1184, fd=351 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.111498 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1564, fd=396 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.111504 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1274, fd=362 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.111565 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1216, fd=355 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.111716 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1236, fd=357 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.111721 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1376, fd=374 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.111755 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65284, fd=304 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.111780 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1258, fd=360 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.111802 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1176, fd=349 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.111814 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1660, fd=404 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.111836 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1430, fd=383 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.111880 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1572, fd=394 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.111919 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1626, fd=399 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.111986 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1582, fd=408 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.112025 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1198, fd=353 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.112086 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1288, fd=365 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.112144 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1642, fd=403 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.112267 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1638, fd=402 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.112280 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1676, fd=412 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.112321 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1384, fd=376 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.112323 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1652, fd=411 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.112326 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1282, fd=364 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.112473 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1510, fd=390 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.112483 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10904, fd=1510 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.112548 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:18632, fd=2106 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.112559 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1636, fd=401 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.112583 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:65144, fd=289 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.112646 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28962, fd=3250 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.112802 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1342, fd=370 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.112822 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7810, fd=1155 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.112854 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5778, fd=581 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.112861 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1612, fd=398 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.112879 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:20546, fd=1951 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.112896 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5248, fd=878 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.112910 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3504, fd=712 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.112930 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14062, fd=1697 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.112986 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1322, fd=368 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.112994 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4342, fd=548 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.113020 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21468, fd=2781 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.113070 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1554, fd=395 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.113078 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21884, fd=2394 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.113112 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1502, fd=387 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.113132 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28604, fd=2688 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.113138 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1446, fd=380 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.113199 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11352, fd=1607 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.113212 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:24902, fd=2638 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.113211 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1634, fd=400 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.113253 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28188, fd=3483 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.113267 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21010, fd=2306 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.113299 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:13622, fd=3638 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.113328 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26940, fd=2547 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.113467 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:24528, fd=2624 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.113527 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11744, fd=1604 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.113567 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11090, fd=3442 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.113573 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8818, fd=1290 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.113641 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:16292, fd=1967 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.113655 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1332, fd=369 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.113655 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14916, fd=1374 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.113660 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3866, fd=2805 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.113661 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1538, fd=392 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.113672 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1194, fd=352 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.113697 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3168, fd=676 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.113800 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1418, fd=381 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.113875 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:23196, fd=2262 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.113874 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8580, fd=3202 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.113893 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10496, fd=1448 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.113919 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1528, fd=393 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.113934 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14600, fd=3687 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.113939 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28396, fd=3211 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.113951 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1212, fd=354 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.113987 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1394, fd=378 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114017 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12670, fd=1742 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114033 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:20060, fd=1898 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114041 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:25368, fd=2905 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114052 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27344, fd=3999 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114063 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12060, fd=1099 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114075 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:23602, fd=2111 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114076 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5442, fd=571 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114082 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27746, fd=3448 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114101 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:15398, fd=1926 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114173 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1300, fd=366 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114178 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:17958, fd=2114 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114221 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:15782, fd=1468 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114250 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27958, fd=3459 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114263 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14454, fd=1840 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114291 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:17422, fd=1634 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114296 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1704, fd=407 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114319 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:22852, fd=2469 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114325 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27526, fd=3443 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114332 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:18146, fd=3777 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114346 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1588, fd=397 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114393 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26526, fd=3820 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114407 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4982, fd=846 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114406 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28862, fd=4045 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114415 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:16776, fd=1566 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114432 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:16982, fd=1594 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114436 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7348, fd=1046 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114456 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2588, fd=629 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114471 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12224, fd=1554 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114520 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1490, fd=389 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114554 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1350, fd=371 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114563 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4550, fd=786 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114604 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8030, fd=1143 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114603 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2436, fd=490 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114640 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:17666, fd=2031 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114649 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29262, fd=3938 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114661 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5926, fd=908 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114683 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12946, fd=1632 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114684 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6370, fd=945 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114687 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26212, fd=2567 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114698 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30864, fd=3461 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114711 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10626, fd=1369 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114722 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:16498, fd=2079 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.114757 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:24014, fd=2173 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.115044 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19622, fd=2189 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.115128 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1262, fd=361 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.115158 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:22206, fd=2867 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.115202 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30218, fd=3969 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.115218 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:23536, fd=3025 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.115245 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:22674, fd=2680 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.115258 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2942, fd=647 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.115281 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14046, fd=1819 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.115291 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2940, fd=630 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.115291 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10162, fd=3366 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.115334 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3258, fd=681 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.115343 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9138, fd=836 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.115361 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:25074, fd=2331 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.115382 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8318, fd=1240 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.115466 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:25636, fd=2511 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.115479 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:18974, fd=2316 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.115515 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:15122, fd=1808 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.115540 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29692, fd=3371 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.115546 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:25756, fd=3047 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.115565 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21218, fd=1915 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.115668 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:17172, fd=2099 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.115889 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29780, fd=2797 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.115889 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27144, fd=3402 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.115891 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1382, fd=375 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.115930 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12490, fd=1735 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.115963 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:18546, fd=2087 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.116093 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1398, fd=377 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.116094 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11524, fd=1460 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.116137 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:13194, fd=1765 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.116156 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1242, fd=359 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.116197 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:23846, fd=2793 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.116219 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9662, fd=894 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.116256 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:15518, fd=1452 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.116359 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29408, fd=3261 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.116470 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26520, fd=3039 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.116540 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19892, fd=2467 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.116542 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30500, fd=3345 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.116564 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31196, fd=3672 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.116599 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6956, fd=1007 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.116609 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9670, fd=877 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.116615 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26758, fd=3836 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.116707 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21482, fd=2788 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.116767 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26058, fd=3286 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.116795 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7480, fd=1101 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.116801 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9210, fd=1295 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.116800 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30000, fd=4069 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.116921 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1280, fd=363 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.116932 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21694, fd=2584 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.116936 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:17210, fd=1982 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.116959 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:13920, fd=1774 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.116974 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26408, fd=3816 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.117092 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:22392, fd=2656 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.117093 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9530, fd=1361 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.117101 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:17738, fd=2184 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.117134 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6872, fd=1060 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.117137 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4792, fd=780 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.117187 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1460, fd=382 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.117186 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:13504, fd=1667 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.117201 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29648, fd=3324 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.117287 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3716, fd=522 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.117298 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:20390, fd=2645 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.117301 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:24668, fd=2842 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.117304 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27570, fd=3099 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.117365 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:18726, fd=3786 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.117367 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6846, fd=1000 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.117389 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19180, fd=2479 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.117412 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4708, fd=841 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.117560 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9052, fd=3275 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.117629 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:17208, fd=1976 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.117684 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8216, fd=1150 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.117704 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4228, fd=714 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.117753 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:22840, fd=3889 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.117779 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10078, fd=900 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.117868 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:20608, fd=1848 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.117890 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12510, fd=1552 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.117910 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:16024, fd=2077 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.117919 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27998, fd=3164 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.117932 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:20836, fd=1861 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.117933 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10540, fd=1360 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.117944 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:24282, fd=2853 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.117994 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:23056, fd=2254 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118002 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31122, fd=3666 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118024 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29612, fd=2768 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118028 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6042, fd=989 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118039 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31758, fd=3521 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118055 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3744, fd=740 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118077 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:15346, fd=1846 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118078 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29086, fd=3932 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118093 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12996, fd=1777 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118095 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6612, fd=1013 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118104 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:23760, fd=2543 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118111 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26162, fd=3805 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118136 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:24050, fd=3929 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118138 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5006, fd=882 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118143 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:18272, fd=1722 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118145 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:15808, fd=2025 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118158 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12824, fd=3581 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118190 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7980, fd=1175 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118197 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28840, fd=3219 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118200 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:23368, fd=2725 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118201 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19494, fd=2340 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118220 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19744, fd=2194 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118277 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19258, fd=2247 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118307 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5684, fd=963 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118324 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26696, fd=2606 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118329 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28718, fd=3539 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118334 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4530, fd=844 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118351 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:24926, fd=3188 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118356 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14672, fd=1965 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118398 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:25738, fd=2942 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118436 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2558, fd=607 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118489 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30896, fd=3385 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118527 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:22988, fd=3895 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118551 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:23204, fd=2740 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118579 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11414, fd=1574 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118605 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10908, fd=1426 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118621 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:20634, fd=2679 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118630 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12048, fd=1636 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118642 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29986, fd=2836 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118662 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9426, fd=3295 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118719 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:20086, fd=2507 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118735 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7422, fd=687 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118748 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7146, fd=1076 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118759 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:25352, fd=3955 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118773 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29928, fd=3954 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118772 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26904, fd=3167 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118806 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14230, fd=1919 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118844 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9964, fd=924 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118848 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4094, fd=539 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118909 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:16800, fd=1577 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118912 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:23658, fd=2752 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118923 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21552, fd=2592 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118933 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:18766, fd=2292 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.118955 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:15316, fd=1856 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.119001 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:24466, fd=2850 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.119003 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27880, fd=3881 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.119081 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:16810, fd=2095 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.119107 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11126, fd=1548 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.119112 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27266, fd=3203 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.119134 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:15756, fd=1974 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.119327 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27088, fd=3384 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.119530 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21006, fd=2544 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.119544 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14344, fd=1894 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.119566 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31204, fd=3675 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.119568 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30504, fd=4076 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.119660 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5202, fd=885 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.119719 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27456, fd=3237 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.119767 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29244, fd=4049 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.119803 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:20128, fd=2330 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.119815 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:25936, fd=3264 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.119822 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5492, fd=2955 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.119883 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10056, fd=913 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.119890 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30760, fd=3455 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.119937 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:25072, fd=2953 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.119968 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19632, fd=1855 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.120066 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30396, fd=3975 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.120262 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19184, fd=2137 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.120276 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:24260, fd=3935 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.120303 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26326, fd=2478 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.120360 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31420, fd=4089 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.120535 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:22010, fd=2400 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.120581 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4130, fd=2839 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.120714 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34408, fd=4161 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.120737 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36174, fd=4281 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.120796 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11888, fd=1521 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.120796 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31678, fd=4092 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.120815 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31540, fd=4090 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.120856 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6274, fd=608 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.120875 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3006, fd=695 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.120882 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:22366, fd=2170 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.120995 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34470, fd=4150 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.121057 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35146, fd=4278 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.121058 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11584, fd=1628 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.121063 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35110, fd=4264 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.121073 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21166, fd=2558 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.121120 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35654, fd=4333 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.121126 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:18268, fd=2299 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.121129 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34104, fd=4145 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.121149 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:24632, fd=2852 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.121195 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34380, fd=4183 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.121199 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28406, fd=3904 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.121220 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:22472, fd=2011 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.121249 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36324, fd=4318 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.121251 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:16316, fd=1981 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.121289 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21902, fd=2385 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.121308 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35968, fd=4359 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.121365 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8758, fd=3239 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.121391 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34988, fd=4285 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.121462 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34866, fd=4207 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.121462 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36050, fd=4325 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.121512 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34290, fd=4169 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.121516 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35624, fd=4303 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.121536 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:13426, fd=1705 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.121551 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:17724, fd=2039 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.121690 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2182, fd=442 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.121721 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35184, fd=4286 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.121764 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2236, fd=461 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.121880 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34528, fd=4149 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.121886 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34900, fd=4231 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.121890 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34132, fd=4129 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.121913 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2000, fd=436 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.121945 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35326, fd=4269 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.121945 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1726, fd=414 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.121976 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3242, fd=521 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.121981 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2304, fd=452 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122016 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35470, fd=4327 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122017 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34208, fd=4159 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122048 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2088, fd=463 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122071 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1988, fd=445 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122091 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2338, fd=472 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122125 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3584, fd=737 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122147 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35414, fd=4224 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122157 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35218, fd=4251 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122163 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1942, fd=433 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122172 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2032, fd=462 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122235 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8442, fd=1261 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122236 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35766, fd=4276 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122237 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7688, fd=1091 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122252 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34644, fd=4181 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122264 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35738, fd=4361 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122264 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36328, fd=4373 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122284 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1894, fd=429 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122314 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34598, fd=4245 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122318 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10404, fd=1362 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122327 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14836, fd=1947 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122343 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35920, fd=4346 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122395 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2288, fd=476 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122443 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35524, fd=4291 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122481 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35060, fd=4263 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122489 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1746, fd=415 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122494 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34778, fd=4210 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122513 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2222, fd=475 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122561 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34724, fd=4259 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122566 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1758, fd=416 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122578 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35444, fd=4265 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122599 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34566, fd=4187 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122609 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1842, fd=428 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122610 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34094, fd=4131 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122617 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12390, fd=1154 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122653 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2164, fd=441 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122652 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2112, fd=473 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122690 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1812, fd=426 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122696 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:13334, fd=3618 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122703 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34440, fd=4141 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122707 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1910, fd=431 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122714 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2226, fd=450 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122726 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2216, fd=474 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122732 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35826, fd=4348 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122775 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35786, fd=4304 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122778 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34956, fd=4233 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122797 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34078, fd=4125 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122799 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35488, fd=4279 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122801 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36132, fd=4376 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122808 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:13818, fd=1226 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122885 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2250, fd=448 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122900 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34482, fd=4215 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122926 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2066, fd=440 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122942 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:25500, fd=3769 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122977 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1926, fd=457 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.122982 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36252, fd=4349 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.123017 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34328, fd=4168 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.123022 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1796, fd=419 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.123030 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2204, fd=449 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.123132 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35854, fd=4354 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.123205 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2100, fd=459 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.123223 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2174, fd=471 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.123249 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1852, fd=427 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.123251 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2016, fd=460 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.123255 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2326, fd=453 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.123266 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1830, fd=423 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.123307 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1868, fd=456 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.123356 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36290, fd=4375 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.123360 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2272, fd=464 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.123390 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34926, fd=4205 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.123426 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1740, fd=424 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.123489 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35998, fd=4362 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.123683 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1976, fd=444 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.123778 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2196, fd=465 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.123781 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2148, fd=470 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.123789 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36224, fd=4287 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.123802 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11238, fd=1047 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.123838 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4978, fd=865 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.123844 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:22444, fd=3882 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.123865 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26036, fd=3796 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.123963 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1936, fd=455 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124002 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1800, fd=420 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124034 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2258, fd=451 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124045 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1828, fd=422 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124081 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35384, fd=4219 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124096 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7904, fd=1170 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124099 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35692, fd=4289 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124110 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7374, fd=713 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124117 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:16370, fd=3736 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124176 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2068, fd=446 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124191 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12546, fd=1187 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124195 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14914, fd=1961 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124241 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1832, fd=425 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124283 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28218, fd=3499 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124287 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2312, fd=467 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124344 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:24642, fd=2396 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124423 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5780, fd=934 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124426 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29042, fd=3271 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124433 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:17270, fd=2283 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124446 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27060, fd=3989 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124498 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32254, fd=4033 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124561 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21624, fd=2539 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124572 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34818, fd=4222 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124573 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11204, fd=1446 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124602 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:25154, fd=2960 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124659 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4172, fd=541 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124673 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10402, fd=3388 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124696 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27384, fd=3213 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124715 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2136, fd=447 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124716 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:13316, fd=1639 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124719 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34176, fd=4128 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124754 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:20230, fd=2618 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124828 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2006, fd=458 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124840 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21632, fd=2565 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124914 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:25634, fd=2935 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124920 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:15712, fd=1903 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124942 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:18850, fd=1712 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124951 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14264, fd=1347 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124951 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:16850, fd=2179 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124964 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1974, fd=435 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124985 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9452, fd=1263 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124988 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21176, fd=2563 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.124988 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:15366, fd=1421 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125014 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1960, fd=434 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125027 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11722, fd=1481 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125047 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28242, fd=3279 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125058 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:16270, fd=3727 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125058 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26664, fd=3051 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125070 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1780, fd=418 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125090 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1724, fd=413 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125099 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14054, fd=1704 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125103 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35876, fd=4370 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125126 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36274, fd=4369 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125168 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7542, fd=709 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125209 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36090, fd=4331 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125211 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19786, fd=1862 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125210 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:13778, fd=1830 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125214 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11826, fd=1107 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125218 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19784, fd=1794 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125231 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29724, fd=3329 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125241 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30730, fd=3042 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125245 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2050, fd=439 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125288 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2434, fd=614 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125297 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8146, fd=3172 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125298 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34262, fd=4151 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125336 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:13154, fd=3599 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125346 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27524, fd=2689 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125400 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:16342, fd=1987 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125423 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9948, fd=1411 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125452 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:18430, fd=1729 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125493 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8938, fd=1273 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125502 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:17220, fd=2117 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125517 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31188, fd=3994 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125540 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2120, fd=469 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125552 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3066, fd=2727 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125555 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:23424, fd=2522 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125567 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30354, fd=3342 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125582 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26764, fd=3068 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125594 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:16758, fd=1572 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125612 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30154, fd=3963 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125616 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28694, fd=3916 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125627 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:23398, fd=2303 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125683 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:24768, fd=2288 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125711 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12198, fd=1125 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125759 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12308, fd=1142 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125772 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19320, fd=2264 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125780 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1932, fd=432 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125792 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:22944, fd=2706 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125798 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1958, fd=443 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125812 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:17904, fd=2352 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125832 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8656, fd=1183 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125841 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:18852, fd=2447 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125850 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30868, fd=3071 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125865 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27982, fd=3894 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125902 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2330, fd=454 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.125951 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:24370, fd=3940 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.126037 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26366, fd=3001 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.126117 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3318, fd=702 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.126174 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7002, fd=1012 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.126193 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:20774, fd=2287 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.126218 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4604, fd=871 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.126221 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1770, fd=417 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.126230 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:17816, fd=2344 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.126272 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10700, fd=1400 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.126354 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:15302, fd=1996 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.126405 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9738, fd=1396 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.126405 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8438, fd=781 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.126437 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32102, fd=3700 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.126484 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:20262, fd=2413 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.126488 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35562, fd=4275 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.126507 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10838, fd=1489 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.126512 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35012, fd=4239 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.126562 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14080, fd=3660 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.126652 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6404, fd=952 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.126710 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29288, fd=2737 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.126715 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4548, fd=744 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.126748 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31950, fd=3531 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.126791 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21224, fd=2020 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.126804 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:23784, fd=2549 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.126824 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:18346, fd=1680 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.126827 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1764, fd=421 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.126835 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:25694, fd=2517 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.126838 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2036, fd=437 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.126839 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:24278, fd=2846 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.126906 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9208, fd=1326 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.126916 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5570, fd=847 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.126938 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5376, fd=565 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.126944 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34160, fd=4136 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.126954 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:22042, fd=1964 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.126960 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31738, fd=3468 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.126968 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:15762, fd=1916 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.126967 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29872, fd=3341 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.127028 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35272, fd=4212 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.127040 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:20740, fd=2419 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.127078 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:17740, fd=3762 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.127097 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:18116, fd=2053 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.127146 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3722, fd=666 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.127162 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:15896, fd=1910 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.127174 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9260, fd=1205 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.127201 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7778, fd=1132 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.127213 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:23814, fd=3073 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.127224 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:20042, fd=1891 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.127311 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2324, fd=466 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.127319 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6210, fd=588 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.127326 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4184, fd=784 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.127336 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32458, fd=3534 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.127363 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:17342, fd=2139 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.127401 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:22998, fd=2969 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.127501 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30502, fd=3429 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.127514 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11890, fd=1505 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.127533 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32364, fd=3241 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.127542 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:13342, fd=1200 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.127646 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7434, fd=1039 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.127673 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10224, fd=3372 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.127895 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14696, fd=1937 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.127909 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:13738, fd=1835 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.127956 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28456, fd=3291 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.127980 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5956, fd=593 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.127992 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19380, fd=2416 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.127998 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12934, fd=1576 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.128011 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2076, fd=468 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.128021 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14460, fd=1359 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.128027 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2388, fd=477 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.128060 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11350, fd=3452 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.128065 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4768, fd=800 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.128116 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:17060, fd=1601 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.128145 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:20482, fd=2431 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.128170 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14792, fd=1900 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.128221 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26082, fd=2432 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.128238 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3902, fd=533 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.128294 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:18578, fd=1736 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.128312 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26424, fd=2988 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.128353 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:20806, fd=2687 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.128369 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7144, fd=665 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.128419 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:18946, fd=2452 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.128438 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2756, fd=634 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.128459 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:15516, fd=1838 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.128461 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3152, fd=513 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.128513 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:17014, fd=2230 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.128528 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:25254, fd=2466 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.128602 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10674, fd=1492 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.128614 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11632, fd=1453 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.128710 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27768, fd=4010 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.128734 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:16080, fd=2082 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.128745 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26538, fd=3826 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.128768 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9262, fd=1319 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.128791 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6820, fd=1072 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.128885 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2634, fd=589 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.128907 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9030, fd=1297 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.128953 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8112, fd=742 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129025 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12820, fd=1756 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129025 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28864, fd=3230 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129031 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5286, fd=859 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129067 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6518, fd=978 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129084 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2932, fd=650 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129104 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8578, fd=1194 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129152 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5424, fd=951 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129155 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3352, fd=524 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129164 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12674, fd=1749 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129166 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9744, fd=1302 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129174 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21784, fd=2360 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129249 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6920, fd=1041 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129272 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:24022, fd=2327 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129285 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28148, fd=3173 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129287 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19684, fd=2436 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129298 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:24498, fd=2610 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129312 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:25476, fd=2484 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129313 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2058, fd=438 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129331 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:22570, fd=3887 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129332 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:25854, fd=3964 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129447 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21180, fd=1899 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129487 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:15126, fd=1814 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129489 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21458, fd=2569 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129491 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5410, fd=568 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129535 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5834, fd=926 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129539 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4458, fd=552 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129546 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10396, fd=1334 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129611 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21480, fd=2766 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129614 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27156, fd=3854 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129650 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30566, fd=3642 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129695 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7556, fd=1156 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129697 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:1878, fd=430 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129700 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:16330, fd=1975 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129705 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2406, fd=2695 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129724 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:23202, fd=2269 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129754 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:16738, fd=2037 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129769 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6460, fd=1009 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129790 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19004, fd=1792 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129853 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5874, fd=983 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129881 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2934, fd=505 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129889 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27016, fd=3180 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129896 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:20576, fd=3831 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129923 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6522, fd=995 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129988 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:18558, fd=2156 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.129996 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29492, fd=3288 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.130067 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3250, fd=506 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.130091 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:13542, fd=3635 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.130165 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9556, fd=1351 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.130193 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:15596, fd=1859 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.130229 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10752, fd=976 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.130239 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9790, fd=910 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.130270 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2574, fd=486 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.130278 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12614, fd=1174 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.130334 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:23660, fd=2774 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.130385 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19328, fd=2409 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.130406 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19538, fd=3807 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.130412 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10110, fd=1313 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.130437 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:22222, fd=3876 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.130444 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11202, fd=1424 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.130473 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21028, fd=1879 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.130581 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2514, fd=484 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.130654 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21798, fd=2595 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.130673 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3588, fd=717 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.130763 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:15168, fd=1405 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.130768 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26218, fd=2968 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.130783 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3596, fd=720 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.130782 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14422, fd=3671 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.130841 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4060, fd=2811 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.130845 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14196, fd=1321 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.130848 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30920, fd=3392 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.130896 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11098, fd=990 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.130956 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:13680, fd=1682 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.130985 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29426, fd=2758 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.131190 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4398, fd=830 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.131312 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:13234, fd=1775 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.131322 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:22776, fd=2474 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.131424 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11712, fd=1486 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.131424 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10334, fd=1355 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.131437 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12222, fd=1560 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.131482 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:24904, fd=3944 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.131512 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2686, fd=2704 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.131655 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12340, fd=1522 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.131679 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27724, fd=3100 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.131833 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7780, fd=1139 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.131840 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5014, fd=858 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.131873 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14594, fd=1740 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.131879 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8698, fd=3218 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.131896 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2682, fd=648 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.131918 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31246, fd=3670 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.131923 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29848, fd=3965 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.131943 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28598, fd=2693 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132005 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:20084, fd=1832 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132063 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27360, fd=3867 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132093 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:17990, fd=2203 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132113 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27794, fd=3249 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132154 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28632, fd=3215 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132157 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:15584, fd=2042 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132256 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11400, fd=1568 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132260 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5686, fd=887 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132271 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6828, fd=3062 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132293 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12676, fd=1713 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132318 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11820, fd=1642 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132323 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2450, fd=478 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132369 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27028, fd=2568 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132415 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21126, fd=2501 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132415 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21200, fd=2518 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132451 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26602, fd=3332 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132457 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:17464, fd=2311 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132474 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26644, fd=3000 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132554 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:23308, fd=3004 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132605 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8848, fd=820 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132614 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:18142, fd=2135 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132616 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:20106, fd=2343 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132616 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:16082, fd=1482 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132636 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31256, fd=3432 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132649 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:17570, fd=2165 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132674 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6936, fd=3094 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132676 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6278, fd=3017 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132684 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4394, fd=797 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132733 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28210, fd=3273 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132773 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10544, fd=1381 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132804 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:17102, fd=2086 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132826 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5008, fd=2911 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132840 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31484, fd=3473 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132853 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5242, fd=907 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132854 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28980, fd=3927 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132929 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9472, fd=1262 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132962 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30562, fd=3983 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.132990 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:24160, fd=2585 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133029 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:16594, fd=3741 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133027 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8316, fd=1247 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133050 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4100, fd=785 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133060 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:15754, fd=1897 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133077 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28542, fd=2806 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133079 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:13260, fd=1782 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133112 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:25464, fd=2920 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133125 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10948, fd=1430 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133128 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12302, fd=1137 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133129 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26322, fd=2994 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133158 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:20746, fd=1854 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133185 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:15148, fd=1419 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133205 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29358, fd=3945 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133232 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8280, fd=753 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133241 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9968, fd=1422 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133263 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30668, fd=3439 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133279 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11846, fd=1491 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133295 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:20688, fd=2414 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133311 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3582, fd=2771 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133326 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:23268, fd=2084 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133328 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10970, fd=997 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133328 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7334, fd=1124 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133345 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:24532, fd=2248 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133429 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27650, fd=3087 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133439 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3996, fd=686 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133463 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7188, fd=1116 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133484 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:13740, fd=3651 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133512 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:24978, fd=2315 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133546 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26270, fd=2574 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133566 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3552, fd=652 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133571 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:22020, fd=2848 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133622 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:18618, fd=2163 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133704 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4950, fd=889 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133712 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:22138, fd=3870 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133743 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5992, fd=970 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133745 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9984, fd=1324 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133778 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3200, fd=519 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133788 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:16716, fd=1553 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133788 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4528, fd=555 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133820 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11412, fd=3491 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.133984 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:25918, fd=3787 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.134076 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:20232, fd=2626 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.134154 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:24630, fd=2890 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.134200 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14732, fd=1955 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.134203 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:25034, fd=3205 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.134265 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30994, fd=3654 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.134285 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21980, fd=2108 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.134357 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:25478, fd=2990 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.134423 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21608, fd=1952 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.134423 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26964, fd=3174 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.134423 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9460, fd=3301 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.134465 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:23756, fd=2778 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.134473 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14596, fd=3689 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.134590 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4292, fd=728 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.134628 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29744, fd=2783 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.134642 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:15354, fd=1811 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.134708 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19070, fd=3792 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.134724 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19756, fd=2305 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.134729 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:22968, fd=2495 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.134828 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28968, fd=3327 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.134829 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12808, fd=1763 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.134862 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:22924, fd=3893 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.134871 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12728, fd=1569 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.134877 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5490, fd=912 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.134923 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:18150, fd=2379 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.134942 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21502, fd=2061 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.134951 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29756, fd=3612 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.134952 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30944, fd=3466 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.134970 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8150, fd=1220 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.135036 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:17300, fd=2110 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.135043 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:23740, fd=2133 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.135054 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29360, fd=2744 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.135067 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30184, fd=3375 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.135070 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31472, fd=3456 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.135086 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:18724, fd=1707 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.135100 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29068, fd=3263 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.135118 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28972, fd=2705 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.135139 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:20358, fd=3828 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.135170 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30158, fd=3359 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.135173 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27058, fd=3186 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.135210 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:13676, fd=1821 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.135225 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31194, fd=2931 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.135280 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:16620, fd=2045 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.135292 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:22402, fd=1999 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.135293 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:23796, fd=2816 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.135316 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14134, fd=1796 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.135323 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:22956, fd=2697 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.135330 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10474, fd=1471 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.135346 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28062, fd=3145 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.135349 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:25610, fd=3012 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.135352 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19442, fd=3802 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.135356 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:13302, fd=1670 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.135413 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:22058, fd=2863 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.135434 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19570, fd=2361 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.135444 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:16902, fd=2193 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.135447 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19866, fd=2201 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.135536 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:18392, fd=2253 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.135566 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3210, fd=638 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.135607 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12220, fd=3560 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.135616 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8762, fd=1239 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.135617 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:24764, fd=2875 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.135630 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5264, fd=891 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.135746 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7716, fd=1102 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.135749 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:16246, fd=2072 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.135818 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6232, fd=604 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.135994 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4738, fd=543 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.136136 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7776, fd=1134 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.136231 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27378, fd=3070 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.136267 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:22470, fd=2005 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.136275 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:25164, fd=2895 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.136295 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:17558, fd=1641 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.136388 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2684, fd=643 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.136418 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3198, fd=669 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.136495 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9206, fd=852 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.136583 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27810, fd=2647 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.136654 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:25990, fd=3789 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.136662 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27326, fd=2587 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.136714 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:22462, fd=2668 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.136732 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6586, fd=646 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.136881 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7254, fd=1030 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.136887 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2968, fd=641 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.136928 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14124, fd=1813 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.136935 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:17128, fd=2258 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.136938 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14226, fd=1340 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.137015 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14536, fd=1771 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.137017 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10658, fd=1394 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.137113 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19250, fd=1741 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.137117 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8182, fd=755 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.137173 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4850, fd=883 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.137337 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28216, fd=3487 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.137358 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11956, fd=3552 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.137410 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:16476, fd=2014 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.137427 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26638, fd=2506 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.137468 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:15848, fd=1939 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.137484 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21172, fd=3844 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.137498 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5704, fd=917 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.137527 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3874, fd=527 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.137546 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:13250, fd=3607 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.137640 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21484, fd=2582 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.137675 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29446, fd=2751 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.137689 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27234, fd=3995 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.137690 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:17846, fd=2212 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.137761 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:13706, fd=1817 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.137805 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:24240, fd=2180 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.137821 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27376, fd=3871 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.137821 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11156, fd=1564 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.137849 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30936, fd=3078 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.137851 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2746, fd=2713 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.137973 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:24404, fd=2376 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138031 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:23422, fd=2297 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138054 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31210, fd=3118 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138078 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21084, fd=1892 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138141 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:18928, fd=2125 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138172 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6714, fd=615 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138182 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10456, fd=3411 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138193 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:25696, fd=3783 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138215 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3498, fd=734 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138241 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:15352, fd=1427 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138302 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9454, fd=1358 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138304 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8426, fd=774 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138317 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11566, fd=1620 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138421 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:24474, fd=2833 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138478 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21630, fd=2803 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138484 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:22394, fd=2649 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138490 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19052, fd=1815 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138494 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4402, fd=831 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138527 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2516, fd=627 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138544 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:22966, fd=2684 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138554 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:17272, fd=1995 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138578 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:17934, fd=2249 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138661 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26020, fd=3274 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138707 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:15810, fd=1511 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138709 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7166, fd=656 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138740 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:13296, fd=1663 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138753 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14360, fd=1305 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138757 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:22874, fd=3891 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138789 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:20794, fd=3835 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138807 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29812, fd=3300 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138821 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4918, fd=829 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138837 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26692, fd=3355 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138841 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14202, fd=1730 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138885 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:24106, fd=2814 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138895 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:16842, fd=2055 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138908 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28898, fd=3549 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138946 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28680, fd=2815 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138960 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:22478, fd=2676 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138970 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6406, fd=619 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138986 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:24802, fd=2914 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138996 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19964, fd=2208 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.138998 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29614, fd=3600 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139022 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14970, fd=1392 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139040 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:13880, fd=1764 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139053 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5630, fd=911 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139077 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:24264, fd=2591 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139079 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9666, fd=886 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139078 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9966, fd=938 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139082 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:20610, fd=2672 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139094 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:16362, fd=3734 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139094 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5784, fd=901 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139098 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:16938, fd=1957 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139150 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10156, fd=1429 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139170 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:15458, fd=1831 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139210 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7968, fd=1181 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139368 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31512, fd=3684 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139461 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8696, fd=1259 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139472 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26358, fd=2989 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139472 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:13356, fd=3627 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139491 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30038, fd=3959 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139534 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30786, fd=2868 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139558 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26850, fd=2614 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139571 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2812, fd=662 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139609 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21628, fd=3861 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139623 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10154, fd=1323 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139630 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12436, fd=1538 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139639 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3946, fd=531 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139659 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:25162, fd=3950 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139660 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28014, fd=4018 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139663 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27466, fd=2629 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139665 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7424, fd=1136 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139723 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:13734, fd=1300 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139782 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:23312, fd=2998 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139798 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8734, fd=1173 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139816 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:23752, fd=2319 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139845 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14846, fd=1753 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139850 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28798, fd=3216 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139893 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5172, fd=873 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139915 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:23640, fd=2800 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.139999 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14894, fd=1942 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140005 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12040, fd=1502 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140028 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12392, fd=1523 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140054 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:18482, fd=1693 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140074 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:16340, fd=1487 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140105 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3806, fd=743 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140108 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19768, fd=2530 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140115 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26116, fd=3293 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140130 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2946, fd=492 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140133 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12406, fd=1567 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140164 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:22954, fd=2686 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140187 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:22264, fd=3872 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140205 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6756, fd=3041 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140212 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9172, fd=1328 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140230 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10310, fd=944 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140232 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9554, fd=1241 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140253 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29722, fd=3604 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140268 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11544, fd=1458 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140310 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:18874, fd=1718 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140335 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10896, fd=1389 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140353 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29176, fd=3339 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140362 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3536, fd=514 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140367 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11516, fd=1017 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140396 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12938, fd=1590 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140440 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:15968, fd=3718 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140455 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28404, fd=3285 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140474 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:15922, fd=1495 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140490 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4602, fd=779 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140496 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12208, fd=3556 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140560 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:20064, fd=3821 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140580 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21882, fd=2604 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140583 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19444, fd=2168 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140602 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19566, fd=2516 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140623 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21848, fd=2636 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140624 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8844, fd=1282 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140636 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11518, fd=1066 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140672 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21202, fd=2509 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140683 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10076, fd=1410 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140684 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30428, fd=3413 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140699 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11172, fd=1550 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140702 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21210, fd=2013 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140710 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8218, fd=1215 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140726 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3560, fd=718 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140755 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:20180, fd=2496 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140750 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8536, fd=1153 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140770 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6642, fd=1036 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140789 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6146, fd=996 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140793 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:17002, fd=1587 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140793 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3248, fd=2736 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140807 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6930, fd=980 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140838 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:25588, fd=2929 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140855 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19424, fd=2282 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140864 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10656, fd=1499 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140895 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7578, fd=3115 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140899 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4266, fd=721 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140928 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:18574, fd=1744 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.140942 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:23212, fd=2983 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141012 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3496, fd=2754 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141024 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:17360, fd=2289 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141054 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5198, fd=564 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141072 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12822, fd=1738 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141088 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:15028, fd=1913 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141108 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26324, fd=2472 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141135 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:17888, fd=3764 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141149 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:22056, fd=2412 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141206 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2632, fd=495 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141224 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:20878, fd=2694 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141233 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4352, fd=805 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141253 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10594, fd=1368 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141267 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26500, fd=3818 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141267 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:16464, fd=2144 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141316 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11802, fd=1479 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141317 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8992, fd=826 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141325 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:17944, fd=2044 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141335 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29294, fd=2880 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141349 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:20544, fd=2514 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141371 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5456, fd=832 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141434 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7934, fd=1110 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141472 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:15188, fd=1380 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141500 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3140, fd=678 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141576 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:13360, fd=1677 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141610 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27122, fd=3043 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141631 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27596, fd=3114 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141640 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11150, fd=1035 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141646 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6408, fd=1038 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141674 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9112, fd=827 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141689 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:18584, fd=2169 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141721 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:16670, fd=1532 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141752 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12890, fd=1619 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141798 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28488, fd=3298 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141810 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:20796, fd=1978 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141818 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30482, fd=3644 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141883 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10950, fd=1543 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141934 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8106, fd=1227 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141937 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19060, fd=2214 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.141962 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29496, fd=2910 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142072 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:17364, fd=2123 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142076 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4128, fd=770 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142079 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7340, fd=1008 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142080 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26892, fd=3019 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142089 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11348, fd=1011 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142114 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:23518, fd=2735 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142122 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11764, fd=1484 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142176 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:15468, fd=2002 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142175 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26510, fd=2598 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142192 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:24700, fd=3162 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142266 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6516, fd=966 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142274 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:25230, fd=3210 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142386 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5494, fd=905 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142416 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:13110, fd=1648 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142428 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:15530, fd=2015 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142513 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:13744, fd=3649 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142530 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:16376, fd=2132 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142559 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9430, fd=869 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142577 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6958, fd=635 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142636 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:18872, fd=2367 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142689 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:24744, fd=2281 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142693 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12516, fd=1562 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142693 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:25232, fd=2901 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142709 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2758, fd=599 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142732 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28546, fd=4030 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142768 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:20780, fd=1973 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142769 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21504, fd=3855 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142779 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7008, fd=628 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142783 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8370, fd=1179 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142788 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:24336, fd=2869 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142802 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2816, fd=631 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142811 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:17262, fd=1658 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142818 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:18394, fd=2245 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142843 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21184, fd=2312 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142887 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29846, fd=3956 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142911 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4688, fd=809 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142912 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5084, fd=795 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.142929 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7570, fd=1043 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.143198 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12572, fd=1588 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.143231 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10394, fd=965 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.143263 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4894, fd=816 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.143271 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6100, fd=932 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.143278 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12210, fd=1506 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.143403 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21970, fd=2841 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.143427 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:18286, fd=2060 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.143437 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:23000, fd=2729 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.143464 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4710, fd=848 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.143534 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7426, fd=1094 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.143539 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9910, fd=1304 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.143561 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14172, fd=1788 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.143563 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14938, fd=3697 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.143566 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26016, fd=3061 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.143593 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35174, fd=4301 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.143596 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:17862, fd=2219 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.143676 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34326, fd=4134 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.143746 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35980, fd=4313 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.143773 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34880, fd=4211 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.143786 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5774, fd=921 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.143813 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34288, fd=4152 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.143847 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35062, fd=4256 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.143859 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14024, fd=1244 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.143912 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31514, fd=2963 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.143940 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34170, fd=4127 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.143941 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9766, fd=881 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144008 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5324, fd=569 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144070 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34770, fd=4182 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144070 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9664, fd=888 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144076 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3802, fd=747 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144083 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35652, fd=4261 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144099 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27954, fd=3255 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144116 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35098, fd=4258 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144164 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35748, fd=4351 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144169 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34858, fd=4229 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144193 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8966, fd=3252 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144195 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34194, fd=4137 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144228 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35416, fd=4323 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144287 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34552, fd=4173 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144310 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:25774, fd=2948 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144324 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35684, fd=4288 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144346 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28044, fd=3131 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144352 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34976, fd=4242 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144358 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19764, fd=1812 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144359 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:13526, fd=1661 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144384 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3320, fd=675 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144429 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35508, fd=4358 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144439 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35608, fd=4344 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144446 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34396, fd=4140 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144453 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:16852, fd=2102 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144609 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:23872, fd=3066 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144652 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34714, fd=4209 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144681 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4226, fd=818 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144686 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14532, fd=1941 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144712 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34536, fd=4201 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144713 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35898, fd=4342 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144722 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7932, fd=1162 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144723 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35240, fd=4311 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144766 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5958, fd=954 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144829 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34902, fd=4216 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144874 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35374, fd=4314 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144876 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30100, fd=3346 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144906 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34468, fd=4208 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144934 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34646, fd=4184 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.144977 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34434, fd=4199 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.145072 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:22448, fd=2192 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.145092 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34584, fd=4230 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.145107 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21606, fd=2339 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.145160 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19346, fd=2257 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.145183 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:20316, fd=2363 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.145229 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14470, fd=3673 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.145324 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34480, fd=4165 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.145330 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34806, fd=4214 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.145415 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3450, fd=703 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.145502 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:15830, fd=1504 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.145577 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35136, fd=4204 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.145619 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10798, fd=1423 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.145639 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34618, fd=4195 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.145660 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35390, fd=4284 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.145671 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34236, fd=4143 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.145690 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14978, fd=1969 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.145720 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35764, fd=4364 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.145795 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11966, fd=1526 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.145809 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:22262, fd=2134 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.145820 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27612, fd=2641 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.145908 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36194, fd=4379 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.146000 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:23168, fd=3902 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.146042 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30902, fd=3368 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.146085 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:25706, fd=2377 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.146117 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30398, fd=3036 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.146140 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:18274, fd=2142 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.146148 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:15894, fd=1866 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.146211 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5632, fd=880 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.146244 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:16812, fd=3747 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.146331 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11724, fd=1611 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.146360 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:2772, fd=2720 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.146367 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:25276, fd=2974 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.146439 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:23928, fd=2810 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.146486 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34992, fd=4250 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.146487 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:24334, fd=2825 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.146536 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14546, fd=1727 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.146579 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14078, fd=1802 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.146581 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34750, fd=4189 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.146585 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35810, fd=4352 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.146674 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35996, fd=4360 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.146730 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27268, fd=2581 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.146739 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35928, fd=4355 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.146743 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34356, fd=4146 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.146744 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26178, fd=2445 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.146749 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35286, fd=4234 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.146754 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35332, fd=4238 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.146776 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:17214, fd=2276 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.146789 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:13670, fd=1739 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.146827 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:5200, fd=872 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.146844 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36244, fd=4300 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.146871 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8782, fd=813 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.146934 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10420, fd=1338 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.146956 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28846, fd=3923 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.146964 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35016, fd=4244 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.147016 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6702, fd=967 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.147067 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11276, fd=3477 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.147226 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35560, fd=4340 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.147257 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35478, fd=4232 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.147309 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6226, fd=1026 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.147309 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35856, fd=4290 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.147310 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27152, fd=2665 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.147338 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4328, fd=782 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.147340 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:20252, fd=1839 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.147466 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19776, fd=3812 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.147562 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21470, fd=2054 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.147631 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9768, fd=1299 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.147696 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:17798, fd=2191 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.147722 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:15422, fd=1870 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.147827 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12252, fd=1515 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.147954 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3428, fd=704 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.147989 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:8170, fd=1157 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.147995 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28436, fd=3184 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.148114 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27554, fd=3092 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.148122 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29652, fd=3377 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.148123 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:7246, fd=1023 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.148435 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21064, fd=2494 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.148543 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26762, fd=2527 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.148596 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34116, fd=4155 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.148650 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26438, fd=3320 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.148683 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29312, fd=2886 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.148686 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30812, fd=3445 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.148714 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31552, fd=3690 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.148738 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30938, fd=3399 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.148898 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:22710, fd=2462 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.148902 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:4782, fd=772 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.148964 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27962, fd=3151 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.149024 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32944, fd=4111 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.149025 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33358, fd=3107 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.149043 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33296, fd=3731 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.149177 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32744, fd=3714 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.149209 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33000, fd=3322 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.149219 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31864, fd=4014 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.149229 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27498, fd=3438 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.149251 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36074, fd=4330 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.149291 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28912, fd=3224 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.149344 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33222, fd=3541 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.149355 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32556, fd=3502 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.149405 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33104, fd=3347 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.149460 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33798, fd=3606 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.149498 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33608, fd=3555 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.149510 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32972, fd=4050 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.149569 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33552, fd=4070 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.149689 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31266, fd=3127 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.149755 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33284, fd=3728 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.149771 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33176, fd=4059 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.149802 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30204, fd=2979 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.149838 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33158, fd=3615 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.149954 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32208, fd=3209 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.149961 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:16862, fd=2186 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.149973 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12672, fd=1582 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.150033 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28888, fd=3236 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.150049 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30728, fd=3988 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.150077 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32796, fd=3553 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.150098 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33822, fd=3609 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.150134 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33736, fd=3752 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.150219 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29758, fd=3382 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.150233 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19926, fd=3814 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.150240 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:24834, fd=2295 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.150254 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14490, fd=3680 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.150260 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26778, fd=3984 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.150283 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:24374, fd=2213 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.150284 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32960, fd=3716 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.150353 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9660, fd=1271 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.150479 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:12986, fd=1791 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.150565 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32518, fd=3704 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.150716 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:10560, fd=986 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.150721 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26112, fd=3072 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.150741 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:26472, fd=3028 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.150755 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35242, fd=4225 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.150787 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32698, fd=3046 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.150804 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3108, fd=500 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.150842 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35130, fd=4272 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.150876 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:14042, fd=1314 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.150880 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:23032, fd=2714 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.150886 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32866, fd=3316 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.150966 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32424, fd=3027 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.151025 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32622, fd=3710 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.151116 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35386, fd=4246 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.151147 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:27124, fd=3050 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.151160 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32432, fd=3577 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.151283 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36154, fd=4363 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.151290 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33638, fd=3391 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.151298 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33476, fd=3740 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.151311 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35634, fd=4253 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.151359 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:25278, fd=2967 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.151370 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35696, fd=4322 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.151428 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35836, fd=4353 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.151499 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32844, fd=3304 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.151511 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29816, fd=3310 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.151524 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34188, fd=4130 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.151579 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34678, fd=4252 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.151583 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19472, fd=2348 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.151640 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36038, fd=4266 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.151654 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34392, fd=4160 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.151662 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28408, fd=4029 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.151734 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36226, fd=4294 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.151764 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9102, fd=3282 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.151811 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35788, fd=4295 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.151862 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33066, fd=3328 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.151879 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33200, fd=3619 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.151883 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33242, fd=3101 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.151978 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34694, fd=4193 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.152004 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:20354, fd=2368 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.152036 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34844, fd=4267 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.152035 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35300, fd=4310 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.152128 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35818, fd=4257 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.152157 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:18344, fd=2148 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.152464 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32902, fd=3528 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.152482 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:11542, fd=1052 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.152712 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31550, fd=3485 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.152732 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32350, fd=3566 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.152733 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35992, fd=4319 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.152762 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35664, fd=4307 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.152870 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28646, fd=3195 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.152950 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:15348, fd=1818 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.153019 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19114, fd=3793 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.153024 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:9690, fd=1291 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.153056 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:6640, fd=3048 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.153171 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:13106, fd=1603 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:32.153257 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30862, fd=4081 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.400655 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29048, fd=354 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.400842 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29266, fd=377 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.400918 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29368, fd=386 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.401025 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29562, fd=411 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.401230 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29012, fd=349 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.401254 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29288, fd=380 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.401354 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29538, fd=406 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.401428 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29416, fd=394 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.401635 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29144, fd=363 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.401818 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29032, fd=353 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.401854 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29070, fd=357 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.402011 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29242, fd=376 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.402094 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29412, fd=393 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.402097 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29522, fd=405 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.402617 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29298, fd=382 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.402635 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29354, fd=385 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.402691 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29282, fd=379 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.402714 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29420, fd=395 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.402838 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29226, fd=373 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.402951 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36044, fd=1138 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.402976 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45646, fd=3401 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.402989 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47716, fd=3481 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.403021 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49114, fd=3792 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.403054 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39764, fd=1381 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.403071 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46102, fd=2018 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.403147 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29126, fd=364 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.403183 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60676, fd=4163 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.403201 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29428, fd=396 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.403248 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54830, fd=2992 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.403312 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56256, fd=3773 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.403491 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38716, fd=1347 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.403544 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56686, fd=3138 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.403648 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34370, fd=994 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.403725 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43588, fd=3241 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.403815 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49580, fd=3578 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.403876 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41364, fd=1565 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.403916 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35568, fd=1067 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.403957 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38138, fd=1266 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.404047 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29396, fd=392 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.404045 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29230, fd=374 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.404073 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50148, fd=2536 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.404082 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29338, fd=387 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.404227 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33172, fd=763 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.404263 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47178, fd=2255 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.404370 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61070, fd=3294 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.404476 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42934, fd=1735 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.404477 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32566, fd=750 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.404502 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59384, fd=4045 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.404554 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48646, fd=2280 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.404600 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33746, fd=961 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.404675 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55334, fd=2978 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.404683 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58582, fd=3021 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.404716 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52928, fd=3903 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.404903 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30108, fd=506 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.405009 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52510, fd=3891 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.405017 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32056, fd=707 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.405028 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30580, fd=541 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.405050 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58106, fd=3236 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.405054 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44064, fd=1963 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.405134 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51062, fd=3623 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.405193 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46626, fd=2111 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.405308 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40868, fd=1527 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.405315 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58996, fd=4037 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.405536 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47006, fd=2223 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.405753 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37688, fd=1246 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.405828 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51974, fd=3878 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.405833 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44538, fd=1802 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.405882 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42332, fd=1672 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.405893 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56626, fd=3133 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.405948 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37010, fd=1253 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.406017 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31956, fd=700 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.406230 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51436, fd=2677 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.406273 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58492, fd=4124 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.406326 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50952, fd=2621 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.406525 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33074, fd=801 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.406563 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57566, fd=4017 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.406577 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42628, fd=1809 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.406599 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34092, fd=1005 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.406617 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38248, fd=1943 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.406618 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32516, fd=735 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.406650 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30986, fd=566 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.406655 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53758, fd=2717 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.406705 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61120, fd=3284 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.406709 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39944, fd=1401 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.406713 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51556, fd=3590 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.406737 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50460, fd=3827 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.406744 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53394, fd=3924 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.406762 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57644, fd=4018 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.406795 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41516, fd=1731 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.406809 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51492, fd=3639 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.406839 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52330, fd=3603 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.406852 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52738, fd=2741 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.406887 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34660, fd=908 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.406940 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45164, fd=1966 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.406960 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46576, fd=2091 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.406967 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36446, fd=1065 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.406990 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49096, fd=2426 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407011 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45690, fd=2067 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407027 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44814, fd=2559 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407026 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49398, fd=2339 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407039 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43670, fd=1857 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407053 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38662, fd=1290 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407057 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54744, fd=2973 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407063 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53242, fd=2859 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407072 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56642, fd=3787 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407074 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48170, fd=2247 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407111 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40466, fd=1657 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407149 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41828, fd=1620 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407165 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55748, fd=2791 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407165 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47486, fd=2119 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407185 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33786, fd=907 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407197 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40322, fd=1631 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407204 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61478, fd=4073 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407211 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35230, fd=1144 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407246 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39770, fd=1394 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407263 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57150, fd=3146 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407278 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46470, fd=2042 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407283 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55876, fd=3757 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407351 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48206, fd=3487 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407488 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55226, fd=2964 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407493 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39308, fd=1346 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407527 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37500, fd=1212 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407528 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38806, fd=1359 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407571 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58064, fd=3233 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407580 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40958, fd=1546 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407591 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54626, fd=3948 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407609 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57980, fd=3848 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407370 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44262, fd=1898 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407680 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57102, fd=4108 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407688 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54192, fd=2747 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407748 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58962, fd=3884 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407750 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55498, fd=3747 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407765 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39210, fd=1348 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407796 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43106, fd=1742 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407820 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33460, fd=841 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407841 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61544, fd=4179 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407861 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45076, fd=1845 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407918 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51036, fd=3625 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407939 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48906, fd=2246 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407939 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37210, fd=1134 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407960 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35714, fd=1082 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407960 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34210, fd=874 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.407987 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36614, fd=1135 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408010 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49942, fd=2395 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408030 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60728, fd=4062 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408036 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50658, fd=2365 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408062 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41574, fd=1739 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408081 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52450, fd=3669 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408101 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48640, fd=3770 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408102 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47680, fd=2169 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408115 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56158, fd=3036 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408136 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36226, fd=1118 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408172 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59362, fd=3095 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408202 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36656, fd=1104 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408230 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50568, fd=3564 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408236 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30052, fd=453 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408241 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57238, fd=2927 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408245 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53404, fd=3636 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408246 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49020, fd=3553 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408256 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47144, fd=2081 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408274 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46722, fd=2178 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408311 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52938, fd=2670 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408321 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58704, fd=4031 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408325 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41576, fd=1604 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408449 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50264, fd=2319 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408458 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42708, fd=1724 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408467 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30214, fd=469 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408465 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29880, fd=450 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408518 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30558, fd=492 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408541 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35964, fd=1063 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408548 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32886, fd=758 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408560 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54292, fd=3704 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408564 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35476, fd=984 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408566 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31514, fd=569 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408584 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59156, fd=3088 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408587 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62200, fd=3461 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408592 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55326, fd=3016 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408613 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56646, fd=2872 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408647 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56182, fd=3047 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408655 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52444, fd=2626 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408686 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52890, fd=2801 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408701 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45920, fd=3413 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408737 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51896, fd=2508 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408779 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35168, fd=1139 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408784 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30708, fd=511 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408793 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34838, fd=1021 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408805 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36178, fd=1141 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408819 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54464, fd=3666 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408857 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35672, fd=1026 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408879 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49316, fd=2262 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408884 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41992, fd=1626 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408894 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32142, fd=668 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408933 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39306, fd=1423 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.408987 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44164, fd=1890 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.409028 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44744, fd=2538 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.409045 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36926, fd=1193 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.409061 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42036, fd=1647 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.409071 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50480, fd=2573 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.409088 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58490, fd=3261 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.409114 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30486, fd=539 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.409120 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61778, fd=3961 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.409132 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50038, fd=2407 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.409138 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60354, fd=4058 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.409238 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60338, fd=3176 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.409238 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32686, fd=778 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.409268 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48018, fd=2219 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.409320 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48492, fd=3496 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.409357 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59936, fd=3906 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.409366 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56196, fd=2879 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.409415 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51970, fd=3656 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.409462 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61118, fd=3941 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.409509 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39916, fd=1402 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.409552 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36546, fd=1091 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.409588 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45398, fd=3386 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.409590 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43138, fd=1754 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.409602 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41004, fd=1550 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.409612 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28728, fd=322 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.409644 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40530, fd=1471 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.409673 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28928, fd=341 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.409709 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46180, fd=2154 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.409736 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48394, fd=2343 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.409800 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57742, fd=2971 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.409820 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59358, fd=3890 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.409842 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33576, fd=918 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.409943 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58974, fd=3283 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.409957 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28898, fd=338 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.409958 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46286, fd=3708 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.409966 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45808, fd=2082 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.409985 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45252, fd=1867 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.409986 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44256, fd=1858 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.410019 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59544, fd=3340 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.410036 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54934, fd=2776 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.410085 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34632, fd=1064 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.410084 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39176, fd=1526 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.410084 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31066, fd=540 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.410106 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43240, fd=1855 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.410146 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50922, fd=3616 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.410192 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40416, fd=1466 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.410197 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33314, fd=824 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.410201 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28696, fd=316 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.410211 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28698, fd=321 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.410212 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28672, fd=313 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.410215 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28662, fd=312 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.410299 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28948, fd=343 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.410300 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28582, fd=303 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.410363 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59812, fd=4051 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.410368 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61880, fd=3427 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.410408 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53884, fd=2683 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.410420 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28470, fd=294 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.410457 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28492, fd=291 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.410474 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43712, fd=1850 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.410568 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51558, fd=2493 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.410572 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42566, fd=3181 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.410622 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28680, fd=314 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.410740 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28524, fd=297 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.411007 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28556, fd=302 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.411137 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28976, fd=345 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.411144 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44676, fd=1941 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.411160 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49468, fd=2312 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.411165 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28720, fd=320 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.411165 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31084, fd=641 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.411168 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41056, fd=1555 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.411176 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38082, fd=1440 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.411204 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31656, fd=631 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.411242 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28596, fd=306 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.411256 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28646, fd=310 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.411293 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28864, fd=334 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.411329 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28888, fd=337 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.411368 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28778, fd=327 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.411475 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28828, fd=331 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.411506 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59918, fd=3135 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.411514 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60284, fd=3226 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.411602 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28872, fd=336 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.411635 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28714, fd=318 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.411661 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28840, fd=332 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.411672 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28634, fd=309 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.411688 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28758, fd=323 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.411733 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28566, fd=300 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.411734 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28938, fd=342 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.411736 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38268, fd=1332 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.411752 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28964, fd=344 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.411768 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57120, fd=2928 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.411784 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30488, fd=543 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.411786 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28742, fd=324 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.411796 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47280, fd=2103 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.411803 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28984, fd=346 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.411814 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28576, fd=301 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.411857 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28718, fd=319 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.411862 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28618, fd=307 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.411870 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49840, fd=3539 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.411936 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38830, fd=1304 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.411985 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54038, fd=2921 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.412005 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28452, fd=287 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.412012 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28520, fd=299 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.412012 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28426, fd=286 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.412016 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55112, fd=2930 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.412027 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43658, fd=2445 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.412063 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28988, fd=347 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.412126 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28906, fd=339 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.412303 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28802, fd=329 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.412493 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28856, fd=335 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.412548 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28540, fd=295 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.412551 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28992, fd=348 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.412559 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42720, fd=1623 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.412664 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39556, fd=2920 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.412662 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28498, fd=292 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.412705 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28592, fd=305 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.412743 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28818, fd=330 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.412764 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28514, fd=293 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.412941 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28586, fd=304 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413019 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28486, fd=290 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413048 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53380, fd=3683 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413051 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28440, fd=289 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413051 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58224, fd=3863 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413080 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28612, fd=308 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413143 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50962, fd=3842 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413150 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46260, fd=2140 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413183 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51422, fd=2473 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413203 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46802, fd=2206 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413216 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28702, fd=317 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413251 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48724, fd=3547 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413312 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56360, fd=3105 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413339 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28432, fd=285 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413343 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37690, fd=2840 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413361 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34028, fd=860 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413399 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36458, fd=1261 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413464 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40674, fd=1485 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413475 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28786, fd=328 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413500 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36004, fd=1723 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413511 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28508, fd=296 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413522 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45204, fd=3377 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413566 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53590, fd=2876 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413586 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45722, fd=1955 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413600 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28770, fd=326 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413629 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28554, fd=298 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413654 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33076, fd=742 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413657 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35544, fd=997 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413664 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37440, fd=1168 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413688 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58306, fd=4025 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413708 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45390, fd=2605 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413744 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55800, fd=3986 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413746 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49388, fd=3565 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413756 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49880, fd=2341 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413758 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42150, fd=1569 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413759 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48260, fd=2318 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413804 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47944, fd=2294 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413905 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28658, fd=311 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413949 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51838, fd=2497 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.413951 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36966, fd=1306 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414037 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47836, fd=2185 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414052 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54060, fd=2844 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414104 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31470, fd=572 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414110 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57308, fd=2954 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414178 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28692, fd=315 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414196 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54578, fd=2757 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414197 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59696, fd=3100 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414209 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47456, fd=3733 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414219 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50322, fd=2372 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414226 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57792, fd=3003 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414297 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40996, fd=1524 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414334 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31164, fd=634 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414360 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32462, fd=687 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414422 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60400, fd=3398 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414423 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43682, fd=2439 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414433 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28772, fd=325 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414444 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41136, fd=2212 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414455 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36520, fd=1778 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414467 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28458, fd=288 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414475 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56330, fd=3995 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414485 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42074, fd=1773 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414517 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44666, fd=2526 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414582 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59028, fd=3075 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414616 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49210, fd=3557 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414633 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28850, fd=333 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414642 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50502, fd=2581 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414654 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45908, fd=1981 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414694 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40156, fd=1428 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414715 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42194, fd=2326 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414730 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60572, fd=3213 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414731 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60798, fd=3265 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414771 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44184, fd=1829 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414852 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55376, fd=2972 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414886 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60982, fd=4066 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414893 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35972, fd=2663 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414911 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41632, fd=1606 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414966 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55490, fd=3978 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414985 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34872, fd=1012 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.414992 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:28914, fd=340 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.415011 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38202, fd=1249 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.415052 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50758, fd=2460 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.415050 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37908, fd=1427 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.415053 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48486, fd=2351 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.415122 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43276, fd=1783 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.415168 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34224, fd=946 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.415181 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33548, fd=904 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.415194 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59234, fd=3888 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.415229 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52236, fd=3883 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.415246 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38768, fd=1330 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.415272 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46954, fd=3720 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.415290 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48972, fd=3510 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.415311 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51294, fd=3582 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.415321 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56788, fd=3797 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.415681 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33678, fd=865 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.415685 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47802, fd=2192 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.415764 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55160, fd=2936 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.415765 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39066, fd=1509 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.415785 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54542, fd=2740 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.415796 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55930, fd=3760 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.415795 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50088, fd=2530 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.415809 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42596, fd=1608 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.415835 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47386, fd=2239 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.415859 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32232, fd=724 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.415869 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50504, fd=2353 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.415895 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31004, fd=545 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.415910 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52800, fd=3617 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.415918 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50146, fd=2535 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.415952 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49620, fd=2274 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416029 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34064, fd=847 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416040 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34594, fd=1058 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416059 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36982, fd=1311 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416065 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32538, fd=768 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416110 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52600, fd=2726 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416110 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41966, fd=1597 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416176 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35458, fd=1055 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416184 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59508, fd=4047 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416195 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45674, fd=2008 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416206 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46640, fd=3450 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416207 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58066, fd=2982 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416237 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59014, fd=4036 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416244 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50986, fd=2636 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416259 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46468, fd=2028 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416260 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60196, fd=3392 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416291 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37300, fd=1263 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416307 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36262, fd=1043 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416315 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39842, fd=1414 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416323 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41578, fd=2261 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416340 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55430, fd=3974 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416436 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44066, fd=1896 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416443 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44804, fd=1950 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416483 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62240, fd=3975 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416540 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57680, fd=3834 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416543 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38558, fd=1355 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416603 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59794, fd=3106 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416606 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57260, fd=3813 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416682 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55006, fd=3724 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416683 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43716, fd=3266 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416685 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57126, fd=3811 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416702 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54320, fd=2690 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416708 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52580, fd=3895 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416738 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32536, fd=760 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416766 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55844, fd=3758 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416771 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37564, fd=1301 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416779 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61444, fd=3947 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416800 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49614, fd=3580 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416875 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47724, fd=2321 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416904 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51448, fd=2483 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416908 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39924, fd=2109 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416956 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61550, fd=4075 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416962 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53060, fd=2609 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416967 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43640, fd=1814 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416978 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39282, fd=1417 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.416988 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40468, fd=1638 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417087 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60222, fd=4154 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417099 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33184, fd=792 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417112 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58148, fd=3037 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417141 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40904, fd=1468 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417174 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58760, fd=3081 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417217 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51918, fd=3651 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417221 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55878, fd=3988 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417234 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49116, fd=2442 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417244 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35790, fd=1032 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417263 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52124, fd=2681 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417298 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54062, fd=3652 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417301 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30422, fd=507 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417303 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61072, fd=3939 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417304 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56802, fd=3800 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417314 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34740, fd=877 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417318 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53308, fd=3921 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417320 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30370, fd=555 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417355 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51706, fd=2656 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417364 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35270, fd=933 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417439 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33168, fd=861 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417441 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53832, fd=2811 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417479 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53080, fd=3626 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417495 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44106, fd=1836 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417498 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62016, fd=3455 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417498 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61206, fd=3306 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417504 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38264, fd=1463 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417566 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32128, fd=656 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417570 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32036, fd=691 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417584 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41386, fd=1575 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417586 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32020, fd=672 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417641 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29718, fd=422 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417664 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48644, fd=2356 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417685 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30110, fd=510 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417687 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40412, fd=2138 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417750 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45106, fd=1959 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417772 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29810, fd=441 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417780 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39558, fd=1374 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417793 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56258, fd=2861 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417868 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48168, fd=2199 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417903 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46202, fd=3703 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417918 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56684, fd=2904 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.417973 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36182, fd=1106 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.418079 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29904, fd=477 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.418082 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30916, fd=544 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.418088 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33232, fd=717 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.418098 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38822, fd=1991 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.418117 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31414, fd=579 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.418146 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34168, fd=922 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.418218 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29944, fd=489 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.418322 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42418, fd=1668 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.418388 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41398, fd=1554 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.418423 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37496, fd=1362 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.418444 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44618, fd=1925 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.418446 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37150, fd=1216 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.418456 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52374, fd=2750 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.418464 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36686, fd=1120 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.418480 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30632, fd=508 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.418507 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30296, fd=498 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.418549 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29744, fd=433 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.418565 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43222, fd=2406 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.418568 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47170, fd=3468 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.418574 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57656, fd=2960 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.418576 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34836, fd=935 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.418604 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39920, fd=1407 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.418677 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53570, fd=2883 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.418719 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30322, fd=484 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.418864 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35044, fd=1056 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.418947 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29698, fd=421 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.418949 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32414, fd=698 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.418962 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60720, fd=3927 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.418965 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29822, fd=445 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.419003 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58562, fd=3064 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.419015 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29862, fd=438 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.419040 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41014, fd=1684 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.419044 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33708, fd=896 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.419055 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42978, fd=1768 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.419058 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29758, fd=425 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.419089 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35830, fd=1201 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.419112 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39292, fd=2063 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.419123 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40704, fd=1525 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.419190 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29906, fd=474 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.419196 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35492, fd=1042 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.419201 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38988, fd=2003 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.419202 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29968, fd=490 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.419248 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31960, fd=609 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.419299 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37930, fd=1205 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.419308 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37742, fd=1192 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.419598 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38680, fd=1271 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.419665 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54836, fd=3682 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.419670 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29842, fd=434 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.419674 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36482, fd=2721 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.419759 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29772, fd=426 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.419793 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29988, fd=497 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.419866 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32668, fd=777 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.419873 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29728, fd=432 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.419899 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40308, fd=1439 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.419912 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34616, fd=892 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.419919 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30186, fd=447 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.419946 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38250, fd=1938 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.419992 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30988, fd=503 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.420029 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36824, fd=1172 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.420039 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30804, fd=550 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.420078 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30490, fd=526 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.420086 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31506, fd=628 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.420150 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29766, fd=457 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.420211 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35182, fd=1113 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.420231 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33488, fd=810 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.420246 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33672, fd=945 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.420267 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42136, fd=1619 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.420575 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39302, fd=1413 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.420587 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43868, fd=2459 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.420596 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34024, fd=969 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.420618 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29786, fd=427 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.420638 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41714, fd=3111 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.420766 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29802, fd=428 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.420810 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32926, fd=804 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.420995 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59380, fd=3314 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.421102 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59966, fd=4054 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.421106 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61476, fd=4072 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.421186 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47070, fd=2216 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.421207 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53172, fd=2583 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.421244 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48536, fd=3494 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.421355 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45976, fd=3425 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.421367 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56090, fd=3767 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.421426 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58954, fd=4133 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.421372 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38376, fd=1259 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.421459 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61048, fd=4069 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.421460 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30036, fd=440 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.421507 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36282, fd=1750 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.421509 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45498, fd=1897 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.421537 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35774, fd=1038 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.421557 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56582, fd=2894 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.421573 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32296, fd=653 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.421576 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31780, fd=618 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.421664 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42196, fd=1670 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.421720 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59382, fd=3109 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.421781 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57528, fd=3194 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.421849 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31156, fd=532 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.421865 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37870, fd=1265 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.421947 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62338, fd=3385 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.421954 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30236, fd=515 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.421958 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53718, fd=2905 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.421980 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43390, fd=1792 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422022 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40598, fd=1472 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422024 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54628, fd=2779 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422047 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48982, fd=3508 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422050 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34650, fd=1019 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422064 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58632, fd=4029 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422065 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36250, fd=1048 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422067 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45056, fd=1939 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422071 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49838, fd=2509 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422076 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39626, fd=1383 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422076 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43332, fd=1740 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422093 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35772, fd=1207 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422102 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55162, fd=2794 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422180 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57966, fd=3227 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422191 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60628, fd=3182 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422216 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60630, fd=3234 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422239 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44932, fd=1933 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422311 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51742, fd=2489 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422327 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31078, fd=602 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422441 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36714, fd=1286 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422464 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51296, fd=2454 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422473 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58416, fd=3871 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422474 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44476, fd=3328 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422496 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57612, fd=3210 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422509 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48316, fd=3532 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422525 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46652, fd=2117 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422543 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56538, fd=4099 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422555 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31872, fd=606 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422583 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59420, fd=3325 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422651 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34324, fd=914 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422710 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36684, fd=1114 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422729 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42774, fd=1703 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422770 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43930, fd=1952 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422777 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53224, fd=2589 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422777 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50384, fd=3822 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422831 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35258, fd=1643 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422842 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34618, fd=858 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422893 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47816, fd=2181 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422900 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50802, fd=3610 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422916 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41656, fd=1609 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422928 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41734, fd=1517 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422949 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37218, fd=1194 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.422976 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49222, fd=2448 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.423016 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29672, fd=439 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.423087 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35240, fd=1163 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.423144 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45666, fd=1998 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.423242 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34076, fd=852 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.423245 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49630, fd=3535 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.423251 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44380, fd=2502 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.423268 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33542, fd=912 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.423275 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57048, fd=3157 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.423358 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58054, fd=4023 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.423417 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54594, fd=3672 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.423466 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54174, fd=3701 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.423501 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42750, fd=2387 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.423507 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54198, fd=3655 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.423531 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39492, fd=2076 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.423532 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42834, fd=2364 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.423554 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51676, fd=3596 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.423556 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32912, fd=713 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.423566 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50718, fd=3606 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.423854 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55478, fd=2847 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.423877 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55110, fd=3957 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.423890 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61768, fd=3963 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.423899 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62134, fd=3307 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.424001 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61766, fd=3424 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.424065 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52750, fd=3675 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.424095 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52736, fd=2796 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.424117 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59906, fd=3380 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.424116 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47182, fd=2141 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.424120 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41252, fd=1492 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.424149 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38920, fd=1288 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.424169 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48846, fd=2403 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.424170 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40698, fd=1483 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.424178 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52118, fd=3665 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.424268 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58494, fd=3041 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.424269 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61028, fd=3219 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.424270 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34094, fd=870 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.424297 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46534, fd=2100 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.424336 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31712, fd=586 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.424474 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60312, fd=3148 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.424487 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30232, fd=558 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.424494 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47608, fd=2297 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.424557 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33040, fd=871 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.424607 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48122, fd=3754 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.424620 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52154, fd=2529 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.424639 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34834, fd=967 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.424682 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49376, fd=3561 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.424687 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32456, fd=679 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.424710 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30688, fd=547 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.424784 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40190, fd=1432 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.424822 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37750, fd=1902 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.424854 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50150, fd=2556 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.424888 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33544, fd=869 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.424896 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29616, fd=414 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.424914 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58998, fd=3085 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.424962 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55982, fd=2817 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.424981 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37270, fd=1150 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.424985 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38978, fd=2027 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425047 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29714, fd=449 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425059 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42212, fd=1659 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425071 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29768, fd=435 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425070 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41300, fd=1568 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425079 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30022, fd=444 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425138 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29756, fd=424 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425195 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34192, fd=897 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425201 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48940, fd=2414 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425235 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37686, fd=1233 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425245 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49328, fd=3558 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425267 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60318, fd=3917 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425280 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32914, fd=725 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425300 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29856, fd=436 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425301 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29626, fd=416 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425330 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55536, fd=2770 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425331 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36756, fd=1156 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425399 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30156, fd=454 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425438 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29592, fd=413 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425448 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44520, fd=2517 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425448 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45550, fd=1987 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425477 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29838, fd=468 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425507 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40306, fd=1610 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425531 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46182, fd=1982 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425536 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29648, fd=417 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425586 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37242, fd=1148 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425623 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40812, fd=1522 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425625 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41060, fd=1557 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425636 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43230, fd=1774 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425648 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46952, fd=2184 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425707 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59832, fd=4052 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425780 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42748, fd=1688 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425800 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62148, fd=3441 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425844 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42078, fd=1633 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425889 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36336, fd=2698 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425950 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29788, fd=461 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425966 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29764, fd=443 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425981 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39918, fd=1406 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.425986 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48350, fd=3492 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.426026 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33942, fd=864 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.426037 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42236, fd=1653 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.426060 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44266, fd=2491 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.426074 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31064, fd=562 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.426078 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43204, fd=1781 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.426084 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39280, fd=1404 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.426156 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29666, fd=419 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.426219 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32256, fd=731 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.426251 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31062, fd=548 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.426252 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41786, fd=1605 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.426264 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38266, fd=1951 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.426273 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60176, fd=3913 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.426299 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58374, fd=3217 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.426327 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53760, fd=3642 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.426393 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51230, fd=3577 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.426408 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38814, fd=1335 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.426454 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46422, fd=2013 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.426455 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39766, fd=1400 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.426477 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38804, fd=1325 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.426498 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56946, fd=4006 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.426544 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38374, fd=1957 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.426574 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44062, fd=1884 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.426617 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49188, fd=2453 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.426649 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37744, fd=1198 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.426656 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29930, fd=442 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.426681 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60550, fd=3228 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.426689 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29722, fd=423 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.426704 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51564, fd=3592 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.426723 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41594, fd=1595 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.426760 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29608, fd=415 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.426767 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40502, fd=1520 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.426776 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29636, fd=430 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.426781 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29962, fd=480 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.426782 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29676, fd=420 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.426798 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29684, fd=431 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.426915 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29806, fd=429 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.426954 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47952, fd=2282 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.427003 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39304, fd=1366 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.427004 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47928, fd=2208 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.427004 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51990, fd=2673 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.427017 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55738, fd=3745 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.427029 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36154, fd=1231 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.427047 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57488, fd=3823 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.427082 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31076, fd=620 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.427098 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54826, fd=2765 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.427127 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61014, fd=3215 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.427153 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61684, fd=3446 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.427238 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45442, fd=1891 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.427269 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59720, fd=4050 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.427271 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56138, fd=2829 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.427270 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35386, fd=979 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.427291 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55250, fd=2836 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.427309 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37146, fd=2795 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.427314 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47446, fd=2285 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.427330 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46908, fd=2054 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.427348 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43662, fd=1806 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.427419 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30320, fd=530 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.427440 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52942, fd=2675 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.427516 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32330, fd=740 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.427758 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32582, fd=675 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.427780 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57920, fd=3839 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.427837 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31658, fd=598 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.427837 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38168, fd=1449 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.427842 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45054, fd=2053 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.427853 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29882, fd=464 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.427877 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34504, fd=928 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.427877 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33554, fd=953 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.427881 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41058, fd=1539 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.427902 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52932, fd=3905 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.427937 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48362, fd=3764 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428006 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35926, fd=1710 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428036 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55268, fd=3964 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428041 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44518, fd=2521 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428084 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53922, fd=2634 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428107 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45940, fd=2639 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428118 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46550, fd=3710 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428112 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43360, fd=1800 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428135 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50468, fd=2405 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428278 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56608, fd=3999 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428300 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37730, fd=1217 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428346 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46498, fd=2177 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428347 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:29660, fd=418 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428381 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42620, fd=1721 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428386 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35164, fd=1629 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428400 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50258, fd=2550 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428440 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57696, fd=2983 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428447 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39592, fd=2933 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428457 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59278, fd=3287 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428468 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49384, fd=2268 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428512 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35166, fd=1622 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428560 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56194, fd=3769 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428579 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34046, fd=840 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428581 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37114, fd=1331 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428581 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41682, fd=3104 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428646 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51568, fd=3594 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428675 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33440, fd=843 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428678 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59170, fd=3308 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428690 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53386, fd=3687 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428742 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51030, fd=3621 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428782 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58168, fd=3206 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428788 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51988, fd=3880 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428806 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36666, fd=1804 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428814 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41222, fd=2234 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428830 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52564, fd=2565 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428832 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33152, fd=751 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428845 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62310, fd=3465 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428854 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61396, fd=4175 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428875 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49764, fd=2284 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428881 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55746, fd=3751 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428889 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35686, fd=1020 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428922 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45062, fd=1999 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428959 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60832, fd=4166 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428973 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40158, fd=2121 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.428980 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31774, fd=683 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429011 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56230, fd=3059 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429060 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48514, fd=2229 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429082 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55324, fd=2748 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429113 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49672, fd=3537 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429115 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53966, fd=2696 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429125 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62268, fd=3977 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429128 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56980, fd=2929 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429257 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61682, fd=3449 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429276 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47562, fd=2257 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429277 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42142, fd=1577 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429302 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30596, fd=615 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429302 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54372, fd=3706 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429343 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46026, fd=2104 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429345 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53468, fd=2792 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429387 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54440, fd=3707 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429447 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38940, fd=2891 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429454 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60856, fd=3399 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429462 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37834, fd=1260 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429500 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45596, fd=1904 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429522 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52082, fd=2525 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429544 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51548, fd=2488 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429554 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55782, fd=3755 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429559 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42326, fd=1661 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429580 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49118, fd=3520 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429601 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43384, fd=1747 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429634 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47442, fd=3731 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429640 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33550, fd=903 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429654 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32106, fd=661 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429664 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42864, fd=1651 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429676 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49904, fd=2299 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429681 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54318, fd=2730 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429683 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58664, fd=3076 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429690 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35668, fd=1076 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429690 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38992, fd=1353 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429715 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36648, fd=1797 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429751 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47020, fd=2202 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429754 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32876, fd=829 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429808 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46092, fd=2012 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429809 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36646, fd=1143 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429913 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31552, fd=673 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429922 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41294, fd=1712 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429933 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62056, fd=3457 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.429947 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48658, fd=3500 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.430001 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57234, fd=3152 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.430011 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52508, fd=3605 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.430025 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47232, fd=3506 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.430118 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61320, fd=4176 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.430149 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52998, fd=2813 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.430151 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57658, fd=4114 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.430218 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48840, fd=2374 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.430244 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61278, fd=4071 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.430337 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35062, fd=925 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.430346 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32174, fd=706 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.430386 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40766, fd=2182 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.430418 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58098, fd=3859 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.430420 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50556, fd=2394 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.430431 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60004, fd=3202 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.430475 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51134, fd=2494 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.430486 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38332, fd=1262 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.430530 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34582, fd=998 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.430543 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43746, fd=1794 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.430591 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48232, fd=3488 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.430600 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30474, fd=533 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.430621 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45552, fd=2616 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.430643 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42766, fd=1696 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.430699 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39516, fd=2925 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.430758 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42932, fd=1758 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.430802 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59188, fd=4138 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.430816 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57218, fd=2902 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.430852 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36180, fd=1736 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.430854 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51026, fd=2431 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.430877 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50622, fd=2411 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.430922 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61500, fd=4177 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.430926 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35626, fd=1087 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.430930 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54918, fd=2782 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.430930 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30288, fd=529 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.430941 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59526, fd=3894 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.430963 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40164, fd=1433 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.430989 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31058, fd=578 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.431059 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41382, fd=1725 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.431158 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50100, fd=2361 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.431166 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38366, fd=2854 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.431174 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43888, fd=1860 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.431186 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50016, fd=3548 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.431192 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39230, fd=1425 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.431207 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44468, fd=1893 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.431207 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34374, fd=899 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.431223 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45048, fd=3373 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.431260 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61780, fd=3453 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.431278 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58662, fd=3038 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.431278 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44492, fd=1912 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.431281 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62084, fd=3971 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.431309 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51944, fd=2522 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.431315 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46614, fd=2032 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.431319 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37182, fd=2802 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.431323 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33866, fd=839 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.431333 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33264, fd=787 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.431413 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46104, fd=2160 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.431445 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41826, fd=1529 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.431466 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33940, fd=977 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.431469 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55304, fd=3734 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.431492 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58910, fd=3074 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.431501 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60242, fd=3214 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.431565 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43928, fd=1865 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.431615 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36530, fd=1166 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.431652 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36194, fd=1147 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.431704 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48650, fd=2241 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.431705 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43948, fd=1882 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.431708 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48054, fd=2205 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.431756 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53476, fd=3926 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.431771 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49006, fd=2256 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.431787 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58462, fd=3012 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.431807 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47654, fd=2132 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.431818 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45014, fd=1838 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.431862 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56648, fd=3793 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.431950 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47718, fd=2173 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.432043 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55724, fd=2857 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.432052 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54006, fd=2728 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.432088 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60408, fd=3192 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.432096 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61712, fd=3421 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.432097 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30806, fd=576 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.432149 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59994, fd=3132 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.432153 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56192, fd=3054 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.432154 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60450, fd=3920 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.432161 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52576, fd=2570 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.432183 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35622, fd=1003 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.432210 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53972, fd=3648 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.432230 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50564, fd=2593 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.432258 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44914, fd=3360 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.432262 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54834, fd=2979 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.432277 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49530, fd=2355 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.432333 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59534, fd=3326 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.432365 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32746, fd=797 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.432413 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46610, fd=2064 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.432466 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38150, fd=1239 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.432545 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38684, fd=1367 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.432567 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31750, fd=676 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.432599 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31510, fd=595 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.432642 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43420, fd=2423 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.432650 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32366, fd=738 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.432681 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62158, fd=3973 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.432694 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52468, fd=2713 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.432717 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36972, fd=1137 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.432754 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57060, fd=4107 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.432812 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51014, fd=3846 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.432816 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60726, fd=3929 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.432862 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34708, fd=909 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.432882 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41882, fd=1760 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.432902 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53390, fd=2783 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.432913 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50454, fd=2568 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.432943 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48630, fd=2396 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.432985 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32918, fd=701 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.432986 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57564, fd=3205 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.433001 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56644, fd=2856 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.433017 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57996, fd=3188 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.433023 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34418, fd=962 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.433064 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47098, fd=2227 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.433123 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36334, fd=2703 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.433240 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47648, fd=2310 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.433249 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35290, fd=963 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.433298 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49940, fd=2389 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.433324 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49446, fd=2471 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.433331 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46094, fd=2124 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.433341 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37540, fd=2834 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.433354 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40400, fd=2981 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.433385 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47166, fd=2244 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.433417 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52334, fd=2618 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.433647 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57472, fd=4013 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.433659 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55198, fd=3960 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.433669 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49064, fd=3516 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.433713 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36108, fd=1074 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.433727 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41878, fd=2295 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.433731 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48164, fd=2231 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.433747 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42342, fd=1589 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.433799 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49592, fd=2490 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.433808 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57000, fd=2890 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.433811 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42382, fd=1673 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.433832 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42878, fd=1644 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.433836 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61000, fd=4169 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.433841 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38028, fd=1234 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.433848 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53862, fd=2687 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.433867 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32930, fd=863 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.433883 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57836, fd=3025 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.433987 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56696, fd=3110 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.433991 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62156, fd=3317 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.434037 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60610, fd=3923 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.434039 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59348, fd=4044 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.434044 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58914, fd=3080 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.434076 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61522, fd=3299 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.434095 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33546, fd=937 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.434096 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54742, fd=2798 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.434104 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31070, fd=582 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.434152 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41380, fd=3073 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.434168 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48140, fd=2369 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.434195 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49170, fd=2286 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.434202 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59902, fd=3197 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.434248 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37330, fd=1287 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.434291 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59766, fd=4148 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.434368 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35834, fd=1704 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.434388 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39744, fd=1387 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.434411 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54330, fd=2718 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.434492 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45578, fd=2061 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.434721 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43388, fd=1820 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.434827 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56616, fd=4000 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.434830 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31772, fd=647 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.434834 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34954, fd=931 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.434945 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44986, fd=1899 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.434963 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34156, fd=875 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.435029 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60322, fd=4155 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.435048 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33920, fd=807 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.435090 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39710, fd=1486 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.435114 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30478, fd=531 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.435167 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54422, fd=3663 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.435176 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36790, fd=1184 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.435206 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57440, fd=4015 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.435228 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44474, fd=1856 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.435262 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38572, fd=1965 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.435262 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39166, fd=1319 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.435299 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59970, fd=4151 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.435364 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55252, fd=3694 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.435384 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48286, fd=2211 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.435386 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61576, fd=4181 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.435431 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37498, fd=1375 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.435469 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39776, fd=1392 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.435475 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53940, fd=2815 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.435554 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61122, fd=4171 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.435572 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36544, fd=1129 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.435593 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50162, fd=3593 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.435595 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49616, fd=2486 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.435627 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40928, fd=1474 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.435640 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46098, fd=3431 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.435754 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40428, fd=1441 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.435756 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43926, fd=1924 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.435765 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61276, fd=3426 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.435799 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42434, fd=1680 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.435803 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56558, fd=4101 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.435822 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46574, fd=2050 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.435841 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60870, fd=4165 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.435844 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51490, fd=2463 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.435864 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32362, fd=711 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.435875 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40882, fd=2188 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.435938 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34420, fd=1001 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.435970 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46690, fd=2106 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.436023 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46024, fd=2112 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.436129 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56934, fd=3136 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.436159 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59274, fd=3275 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.436232 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54876, fd=3678 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.436230 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55656, fd=3034 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.436291 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51592, fd=2688 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.436303 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51376, fd=2631 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.436532 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43508, fd=1752 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.436695 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38108, fd=1236 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.436696 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59112, fd=4038 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.436739 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41942, fd=1612 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.436847 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57918, fd=4117 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.436846 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48716, fd=2238 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.436869 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58164, fd=3046 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.436884 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60464, fd=3203 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.436892 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56444, fd=3996 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.436904 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36046, fd=2685 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.436913 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40384, fd=1465 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.436941 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62224, fd=3374 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.436943 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42980, fd=1717 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.436982 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36968, fd=1199 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.437031 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58378, fd=3023 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.437043 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44460, fd=1922 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.437085 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44962, fd=1894 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.437099 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43468, fd=1732 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.437143 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52010, fd=2729 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.437196 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62396, fd=3347 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.437207 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32794, fd=745 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.437209 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45972, fd=3416 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.437219 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35846, fd=1006 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.437290 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48998, fd=2410 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.437292 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52822, fd=2665 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.437299 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35572, fd=1066 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.437322 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54386, fd=2736 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.437340 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60830, fd=4064 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.437348 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52638, fd=2780 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.437350 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54558, fd=2704 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.437479 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61246, fd=3429 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.437537 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42410, fd=1796 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.437577 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55678, fd=2787 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.437630 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55010, fd=3719 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.437639 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52964, fd=2807 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.437646 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36332, fd=1115 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.437647 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45546, fd=1985 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.437660 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54130, fd=3940 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.437748 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41402, fd=1571 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.437788 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52140, fd=2590 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.437858 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57708, fd=3216 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.437891 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49174, fd=2434 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.437900 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51756, fd=3866 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.437957 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54850, fd=2709 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.438099 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60448, fd=4157 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.438111 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50388, fd=3559 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.438175 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40858, fd=1537 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.438204 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51334, fd=2467 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.438331 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61604, fd=3304 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.438362 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61932, fd=3289 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.438402 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38678, fd=1341 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.438434 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31568, fd=639 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.438441 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58836, fd=3090 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.438614 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56832, fd=3117 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.438636 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51040, fd=2422 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.438693 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38528, fd=1490 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.438697 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47494, fd=3735 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.438703 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50560, fd=3562 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.438721 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47284, fd=2272 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.438758 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41880, fd=1621 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.438822 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39146, fd=2041 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.438825 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60072, fd=3139 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.438829 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32244, fd=730 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.438859 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46100, fd=2005 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.438884 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53714, fd=2805 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.438896 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47902, fd=2275 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.438905 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50876, fd=2397 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.438916 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53344, fd=2693 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.438950 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32908, fd=856 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.438969 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43242, fd=1780 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.438970 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57292, fd=3814 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.438972 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35030, fd=939 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.438973 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48512, fd=2276 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.439003 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50386, fd=3824 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.439031 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33558, fd=796 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.439118 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57550, fd=3163 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.439125 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50804, fd=2464 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.439149 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54238, fd=2724 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.439180 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56040, fd=3992 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.439239 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49054, fd=3781 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.439245 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45092, fd=1958 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.439298 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44166, fd=1852 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.439312 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59810, fd=3128 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.439326 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37630, fd=1295 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.439369 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32904, fd=828 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.439474 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38132, fd=1434 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.439486 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32466, fd=703 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.439488 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40690, fd=1502 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.439519 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58928, fd=4035 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.439543 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58004, fd=2976 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.439554 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48094, fd=2180 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.439591 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53270, fd=2763 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.439624 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42058, fd=1642 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.439630 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31958, fd=704 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.439656 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33444, fd=834 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.439666 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45496, fd=3390 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.439667 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44644, fd=1875 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.439712 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:57026, fd=2942 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.439736 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59618, fd=4048 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.439752 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43690, fd=3253 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.439762 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47954, fd=3524 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.439876 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34770, fd=924 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.439913 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56160, fd=3993 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.439948 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30772, fd=560 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.440068 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49390, fd=2301 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.440158 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39118, fd=1385 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.440160 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30934, fd=590 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.440229 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35966, fd=1102 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.440234 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41176, fd=1566 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.440255 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48502, fd=3540 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.440270 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60352, fd=3170 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.440308 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53392, fd=2777 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.440320 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34016, fd=934 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.440439 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61104, fd=4068 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.440496 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35510, fd=991 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.440577 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34454, fd=1052 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.440583 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58308, fd=4121 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.440685 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50254, fd=2555 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.440805 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36416, fd=1152 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.440838 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45648, fd=3397 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.440847 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59614, fd=4146 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.440876 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38364, fd=1298 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.440926 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40134, fd=1451 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.440959 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43904, fd=1908 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.441033 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48922, fd=2400 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.441101 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46500, fd=2159 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.441131 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49888, fd=2383 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.441141 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60120, fd=3366 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.441157 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47100, fd=2093 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.441222 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53000, fd=2758 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.441245 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47038, fd=3460 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.441250 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41628, fd=1588 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.441256 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60710, fd=3240 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.441361 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52314, fd=2544 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.441409 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54782, fd=3954 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.441419 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30372, fd=527 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.441477 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45906, fd=3410 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.441478 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36324, fd=1130 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.441538 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56498, fd=2898 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.441567 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54910, fd=2809 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.441656 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34286, fd=973 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.441665 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33748, fd=789 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.441844 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37868, fd=1412 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.441860 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55972, fd=2855 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.441864 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61566, fd=3343 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.441879 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34208, fd=930 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.441894 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32242, fd=788 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.441950 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42208, fd=1649 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.441961 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52530, fd=2762 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.442027 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:44758, fd=1949 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.442098 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54432, fd=3946 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.442168 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:53664, fd=2895 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.442168 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46424, fd=2023 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.442179 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:33228, fd=800 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.442187 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62374, fd=4082 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.442204 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37302, fd=1344 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.442257 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47640, fd=3478 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.442279 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34768, fd=1037 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.442321 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51102, fd=3627 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.442319 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38840, fd=1379 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.442328 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51610, fd=2519 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.442339 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:46612, fd=2079 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.442361 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54576, fd=2963 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.442397 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40668, fd=2170 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.442400 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55660, fd=3984 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.442482 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:48678, fd=3498 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.442538 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45090, fd=1964 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.442542 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:47814, fd=2176 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.442558 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39864, fd=1420 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.442567 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:39554, fd=1456 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.442611 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52018, fd=2722 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.442623 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:37720, fd=1399 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.442635 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:32464, fd=793 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.442638 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41720, fd=1599 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.442673 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61294, fd=4173 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.442689 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:41938, fd=3141 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.442741 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60948, fd=3204 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.442744 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:50632, fd=2592 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.442767 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35242, fd=1036 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.442778 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42728, fd=1630 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.442780 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:52658, fd=3673 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.442855 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:42598, fd=2370 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.442865 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:40908, fd=1498 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.442889 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:30742, fd=496 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.442963 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:34652, fd=1002 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.442992 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56936, fd=2934 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.443010 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:54110, fd=2666 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.443076 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45306, fd=1921 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.443112 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:55530, fd=3738 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.443151 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:62402, fd=3469 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.443200 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:60036, fd=3155 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.443303 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:38310, fd=1470 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.443308 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:56940, fd=3805 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.443353 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58810, fd=3875 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.443454 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:59214, fd=3263 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.443469 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:45658, fd=2114 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.443476 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:51360, fd=2638 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.443500 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:49314, fd=2322 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.443605 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43708, fd=1835 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.443886 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31190, fd=610 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.443950 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58324, fd=4027 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.444144 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:61988, fd=3438 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.444162 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:31874, fd=667 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:39.444401 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:43128, fd=2412 (userver::v3_1_rc::engine::io::IoSystemError) diff --git a/site/static/logs/pipelined/512/userver.log b/site/static/logs/pipelined/512/userver.log index 00c323e8..814a8c46 100644 --- a/site/static/logs/pipelined/512/userver.log +++ b/site/static/logs/pipelined/512/userver.log @@ -1,108 +1,20 @@ -tskv timestamp=2026-04-27T10:18:21.835939 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.836116 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.836564 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.836577 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.836578 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.836579 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.836580 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.836580 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.836581 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.836581 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.836582 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.836703 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.836728 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.836729 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.836729 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.837173 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.837180 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.837326 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.837332 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.837333 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.837334 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.837335 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.837335 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.837599 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.837616 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.837617 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.837618 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.837619 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.837804 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.837819 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.838081 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.838401 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.838408 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.838409 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.838410 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.838735 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.838747 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.838748 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.838749 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.838750 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.838751 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.839334 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.839340 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.839341 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.839341 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.839342 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.839624 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.839631 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.839632 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.839839 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.839843 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.839844 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.839845 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.839846 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.840159 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.840444 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.840457 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.840458 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.840572 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.840574 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.840575 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.840577 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.841326 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.841331 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.841332 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.841333 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.841333 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.841334 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.841334 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.841335 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.841383 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.841391 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.841392 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.841393 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.841394 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.841461 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.841594 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.841605 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.841606 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:21.841642 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:18:27.748663 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58132, fd=122 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:27.748710 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58660, fd=130 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:27.748772 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58426, fd=93 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:27.748835 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58250, fd=70 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:27.748942 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58602, fd=101 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:27.748929 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58004, fd=32 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:27.748987 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58510, fd=82 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:27.749088 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:58344, fd=56 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:35.046598 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:20618, fd=267 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:35.046630 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19496, fd=195 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:35.046695 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:20024, fd=272 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:35.046721 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19758, fd=218 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:35.046743 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:19190, fd=147 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:35.046811 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21014, fd=318 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:35.046840 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:18058, fd=37 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:35.046887 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:21340, fd=316 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:35.046955 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:18056, fd=35 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:35.046972 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:18012, fd=31 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:35.047040 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:18018, fd=32 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:35.047101 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:18022, fd=33 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:42.343601 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35094, fd=424 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:42.343708 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36112, fd=465 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:42.343757 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35792, fd=468 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:42.343848 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35988, fd=442 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:42.343944 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35446, fd=433 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:42.343964 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35302, fd=431 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:42.343994 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:36186, fd=497 (userver::v3_0::engine::io::IoSystemError) -tskv timestamp=2026-04-27T10:18:42.344276 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:35638, fd=453 (userver::v3_0::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:15:56.196522 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3802, fd=351 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:15:56.196547 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3800, fd=350 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:15:56.196899 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3454, fd=314 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:15:56.196938 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3444, fd=312 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:15:56.197242 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3826, fd=353 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:15:56.197031 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3810, fd=352 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:15:56.198012 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3754, fd=347 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:15:56.198085 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:3792, fd=355 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:03.476608 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64486, fd=296 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:03.476634 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64526, fd=298 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:03.476701 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64480, fd=294 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:03.478450 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:64498, fd=295 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:10.758559 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63764, fd=292 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:10.758598 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63756, fd=291 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:10.758595 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63762, fd=290 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:10.758636 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63738, fd=286 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:10.758673 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63708, fd=287 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:10.758757 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63726, fd=288 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:10.758828 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63754, fd=289 (userver::v3_1_rc::engine::io::IoSystemError) +tskv timestamp=2026-06-06T17:16:10.758983 level=ERROR module=SendResponse ( userver/core/src/server/net/http1_connection.cpp:107 ) text=I/O error while sending data: Direction::PerformIo: Connection reset by peerError while SendAll to [::ffff:127.0.0.1]:63724, fd=285 (userver::v3_1_rc::engine::io::IoSystemError) diff --git a/site/static/logs/static/1024/userver.log b/site/static/logs/static/1024/userver.log index d8b3fd0b..e69de29b 100644 --- a/site/static/logs/static/1024/userver.log +++ b/site/static/logs/static/1024/userver.log @@ -1,80 +0,0 @@ -tskv timestamp=2026-04-27T10:20:16.409889 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.410149 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.410630 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.410642 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.410643 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.410644 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.410644 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.410645 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.410646 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.410647 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.410647 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.410648 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.410648 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.410649 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.410649 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.410722 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.410776 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.410849 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.411232 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.411400 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.411411 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.411412 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.411413 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.411414 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.411414 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.411415 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.411416 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.411417 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.411664 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.411931 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.412941 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.412945 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.412946 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.412947 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.412948 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.412948 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.412949 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.412949 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.413223 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.413233 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.413235 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.413236 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.413237 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.413237 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.413238 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.413404 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.413411 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.413412 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.413642 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.413648 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.413649 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.413862 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.414318 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.414342 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.414344 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.414344 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.414417 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.414420 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.414421 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.414421 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.414422 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.414458 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.414668 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.415161 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.415163 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.415164 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.415164 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.415165 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.415166 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.415167 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.415168 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.415168 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.415169 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.415308 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.415437 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.415446 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.415446 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.415447 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.415448 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:16.415449 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server diff --git a/site/static/logs/static/4096/userver.log b/site/static/logs/static/4096/userver.log index bed0c550..e69de29b 100644 --- a/site/static/logs/static/4096/userver.log +++ b/site/static/logs/static/4096/userver.log @@ -1,80 +0,0 @@ -tskv timestamp=2026-04-27T10:20:44.918973 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.919108 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.919109 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.919109 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.919110 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.919110 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.919111 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.919112 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.919112 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.919113 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.919114 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.919114 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.919115 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.919115 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.919116 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.920909 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.920920 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.920921 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.920922 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.920922 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.920923 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.920924 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.920924 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.920925 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.920926 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.920926 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.920927 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.920928 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.920928 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.920929 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.920929 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.921225 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.921236 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.921237 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.921391 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.921401 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.921500 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.922047 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.922053 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.922054 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.922055 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.922056 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.922109 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.922115 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.922116 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.922117 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.922144 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.922151 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.923084 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.923092 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.923093 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.923094 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.923094 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.923095 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.923124 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.923206 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.923208 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.923488 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.923495 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.923682 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.923688 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.923689 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.923690 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.923690 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.923783 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.923789 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.923869 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.923871 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.924180 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.924190 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.924191 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.924320 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.924365 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.924367 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.924369 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.924394 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.924401 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.924402 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.924403 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:20:44.924405 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server diff --git a/site/static/logs/static/6800/userver.log b/site/static/logs/static/6800/userver.log index 1604f32a..e69de29b 100644 --- a/site/static/logs/static/6800/userver.log +++ b/site/static/logs/static/6800/userver.log @@ -1,80 +0,0 @@ -tskv timestamp=2026-04-27T10:21:13.755869 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.756001 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.756002 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.756003 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.756004 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.756200 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.756206 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.756207 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.756207 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.756208 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.756208 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.756209 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.756209 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.756836 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.757141 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.757148 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.757149 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.757150 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.757447 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.757454 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.757455 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.757456 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.757457 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.757670 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.757819 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.757830 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.757831 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.757832 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.758131 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.758141 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.758142 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.758230 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.758403 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.758411 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.758413 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.758554 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.758557 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.758558 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.758559 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.758559 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.758632 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.759013 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.759018 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.759019 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.759948 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.759951 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.759952 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.759953 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.759953 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.759954 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.764679 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.764686 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.764687 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.764688 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.765056 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.765065 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.765066 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.765067 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.765068 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.765069 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.765070 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.765070 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.765349 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.765376 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.765378 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.765379 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.765671 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.765782 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.765784 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.765785 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.765786 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.765966 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.765983 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.765985 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.765986 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.765986 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.765987 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.765988 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.765989 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server -tskv timestamp=2026-04-27T10:21:13.765990 level=ERROR module=Init ( userver/postgresql/src/storages/postgres/detail/pool.cpp:220 ) component_name=hello-world-db text=Failed to establish connection to PostgreSQL server diff --git a/site/static/logs/upload/256/userver.log b/site/static/logs/upload/256/userver.log new file mode 100644 index 00000000..e69de29b diff --git a/site/static/logs/upload/32/userver.log b/site/static/logs/upload/32/userver.log new file mode 100644 index 00000000..e69de29b